source: extensions/floPure/Pure_clear_blue/template/mail/text/html/notification_by_mail.tpl @ 5835

Last change on this file since 5835 was 5835, checked in by flop25, 14 years ago

first version for 2.1 ;

File size: 2.0 KB
Line 
1<div id="nbm_message">
2<h2>{'Notification'|@translate}</h2>
3<p>{'Hello'|@translate} {$USERNAME},</p>
4
5{if isset($subscribe_by_admin)}
6<p>{'The webmaster has subscribed you to receiving notifications by mail.'|@translate}</p>
7{/if}
8{if isset($subscribe_by_himself)}
9<p>{'You have subscribed to receiving notifications by mail.'|@translate}</p>
10{/if}
11{if isset($unsubscribe_by_admin)}
12<p>{'The webmaster has unsubscribed you from receiving notifications by mail.'|@translate}</p>
13{/if}
14{if isset($unsubscribe_by_himself)}
15<p>{'You have unsubscribed from receiving notifications by mail.'|@translate}</p>
16{/if}
17{if isset($content_new_elements_single)}
18<p>{'New elements were added'|@translate} {'on'|@translate} {$content_new_elements_single.DATE_SINGLE}.</p>
19{/if}
20{if isset($content_new_elements_between)}
21<p>{'New elements were added'|@translate} {'between'|@translate} {$content_new_elements_between.DATE_BETWEEN_1} {'and'|@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>{'Go to'|@translate} <a href="{$GOTO_GALLERY_URL}">{$GOTO_GALLERY_TITLE}</a>.</p>
38{/if}
39<p>{'See you soon,'|@translate}</p>
40<p style="text-align:center">{$SEND_AS_NAME}</p>
41<p>
42<br><hr>
43{'To unsubscribe'|@translate}{', click on'|@translate} <a href="{$UNSUBSCRIBE_LINK}">{$UNSUBSCRIBE_LINK}</a><br>
44{'To subscribe'|@translate}{', click on'|@translate} <a href="{$SUBSCRIBE_LINK}">{$SUBSCRIBE_LINK}</a><br>
45{'If you encounter problems or have any question, please send a message to'|@translate} <a href="mailto:{$CONTACT_EMAIL}?subject={'[NBM] Problems or questions'|@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.