source: trunk/template/yoga/mail/text/html/notification_by_mail.tpl @ 3283

Last change on this file since 3283 was 3283, checked in by plg, 15 years ago

complement to r3282, remove all $Id$ in source code.

  • Property svn:eol-style set to LF
File size: 2.1 KB
Line 
1<div id="nbm_message">
2<h2>{'Notification'|@translate}</h2>
3<p>{'nbm_content_hello_1'|@translate}{$USERNAME}{'nbm_content_hello_2'|@translate}</p>
4
5{if isset($subscribe_by_admin)}
6<p>{'nbm_content_subscribe_by_admin'|@translate}</p>
7{/if}
8{if isset($subscribe_by_himself)}
9<p>{'nbm_content_subscribe_by_himself'|@translate}</p>
10{/if}
11{if isset($unsubscribe_by_admin)}
12<p>{'nbm_content_unsubscribe_by_admin'|@translate}</p>
13{/if}
14{if isset($unsubscribe_by_himself)}
15<p>{'nbm_content_unsubscribe_by_himself'|@translate}</p>
16{/if}
17{if isset($content_new_elements_single)}
18<p>{'nbm_content_new_elements'|@translate}{'nbm_content_new_elements_single'|@translate}{$content_new_elements_single.DATE_SINGLE}.</p>
19{/if}
20{if isset($content_new_elements_between)}
21<p>{'nbm_content_new_elements'|@translate}{'nbm_content_new_elements_between_1'|@translate}{$content_new_elements_between.DATE_BETWEEN_1}{'nbm_content_new_elements_between_2'|@translate}{$content_new_elements_between.DATE_BETWEEN_2}.</p>
22{/if}
23
24{if not empty($global_new_lines)}
25<ul id="nbm_new_line">
26{foreach from=$global_new_lines item=line}
27  <li>{$line}</li>
28{/foreach}
29</ul>
30{/if}
31
32{if not empty($custom_mail_content)}
33<p>{$custom_mail_content}</p>
34{/if}
35
36{if not empty($GOTO_GALLERY_TITLE)}
37<p>{'nbm_content_goto_1'|@translate}<a href="{$GOTO_GALLERY_URL}">{$GOTO_GALLERY_TITLE}</a>{'nbm_content_goto_2'|@translate}</p>
38{/if}
39<p>{'nbm_content_byebye'|@translate}</p>
40<p style="text-align:center">{$SEND_AS_NAME}</p>
41<p>
42<br><hr>
43{'nbm_content_unsubscribe_link'|@translate}{'nbm_content_click_on'|@translate}<a href="{$UNSUBSCRIBE_LINK}">{$UNSUBSCRIBE_LINK}</a><br>
44{'nbm_content_subscribe_link'|@translate}{'nbm_content_click_on'|@translate}<a href="{$SUBSCRIBE_LINK}">{$SUBSCRIBE_LINK}</a><br>
45{'nbm_content_problem_contact'|@translate}<a href="mailto:{$CONTACT_EMAIL}?subject={'nbm_content_pb_contact_object'|@translate}">{$CONTACT_EMAIL}</a><br>
46<hr><br>
47</p>
48{if not empty($recent_posts)}
49</div>
50<div id="nbm_recent_post">
51  {foreach from=$recent_posts item=recent_post }
52  <h2>{$recent_post.TITLE}</h2>
53  {$recent_post.HTML_DATA}
54  {/foreach}
55{/if}
56</div>
Note: See TracBrowser for help on using the repository browser.