##// END OF EJS Templates
emails: updated emails design and data structure they provide....
emails: updated emails design and data structure they provide. - more consistent UI for emails - nicer formatting, plaintext emails - major cleanup and fixes lots of incosistencies - additionally debug-style now allows to test emails in browser for faster development

File last commit:

r4038:4a4a02a9 default
r4038:4a4a02a9 default
Show More
email.mako
29 lines | 312 B | application/x-mako | MakoHtmlLexer
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head></head>
<body>
SUBJECT:
<pre>${c.subject}</pre>
HEADERS:
<pre>
${c.headers}
</pre>
PLAINTEXT:
<pre>
${c.email_body_plaintext|n}
</pre>
</body>
</html>
<br/><br/>
HTML:
${c.email_body|n}