comparison src/nabble/view/naml/mailing_list.naml @ 0:7ecd1a4ef557

add content
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 21 Mar 2019 19:15:52 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:7ecd1a4ef557
1 <macro name="send_mail_to_list" unindent="true">
2 <n.new_node.get_associated_mailing_list_archive.>
3 <n.new_email.>
4 <n.send>
5 <from><n.new_node.owner.user_email/></from>
6 <from_name><n.new_node.owner.name/></from_name>
7 <to><n.mailing_list_address/></to>
8 <subject><n.new_node.subject/></subject>
9 <text_part>
10 <n.new_node.text_email_message_with_signature />
11 --
12 Sent from: <n.mailing_list_node.url/>
13 </text_part>
14 <html_part>
15 <n.if.either condition1="[n.plain_text_only/]" condition2="[n.new_node.message.is_text_format/]">
16 <then.null/>
17 <else>
18 <n.new_node.html_email_message_with_signature />
19 <br/><hr align="left" width="300" />
20 Sent from the <a href="[n.mailing_list_node.url/]"><n.mailing_list_node.subject/> mailing list archive</a> at Nabble.com.<br/>
21 </else>
22 </n.if.either>
23 </html_part>
24 <set_headers_for.new_node/>
25 </n.send>
26 </n.new_email.>
27 </n.new_node.get_associated_mailing_list_archive.>
28 </macro>