source: extensions/floOs/mail/text/html/admin/notification_by_mail.tpl @ 3334

Last change on this file since 3334 was 3334, checked in by flop25, 15 years ago

first commit

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