I tried to make a html email template for sabnzbd :
Code: Select all
#encoding UTF-8
##
## Template Email pour SABnzbd
## Ceci est un template Cheetah
## Documentation: http://sabnzbd.wikidot.com/email-templates
##
## Les retours à la ligne et les espaces sont importants !
##
## Entêtes de l'email
Content-Type: text/html; charset="iso-8859-1"
to: $to
from: $from
date: $date
subject: <!--#if $status#-->[SUCCES]<!--#else#-->[ECHEC]<!--#end if#--> du téléchargement : $name
X-priority: 5
X-MS-priority: 5
## Le contenu du message, la ligne vide est obligatoire !
<html>
<body>
Bonjour,
<!--#if $status #-->
<b><font color="#3333FF">[SUCCES] :</font></b> SABnzbd a téléchargé le fichier suivant : <b>"$name"</b><!--#if $msgid=="" then "" else "(newzbin #" + $msgid + ")"#-->.
<!--#else#-->
<b><font color="#FF0000">[ECHEC] :</font></b> SABnzbd n'a pas téléchargé le fichier suivant : <b>"$name"</b><!--#if $msgid=="" then "" else "(newzbin #" + $msgid + ")"#-->.
<!--#end if#-->
<b>Terminé le : </b><i><font color="#3333FF">$end_time</font></i>
<b>Taille du Téléchargement : </b><i><font color="#3333FF">$size</font></i>
<!--#if $cat=="tv" #-->
<b>Catégorie : </b><i>Séries</i>
<!--#end if#-->
<b><u>Résultat du téléchargement</u></b>
<!--#for $stage in $stages #-->
<b>* Etape $stage</b> :<!--#slurp#-->
<!--#for $result in $stages[$stage]#-->
<i>$result</i> <!--#slurp#-->
<!--#end for#-->
<!--#end for#-->
<!--#if $script!="" #-->
Sortie du script utilisateur "<b><i>$script</i></b>" :
$script_output
<!--#end if#-->
A bienotôt !
</body>
</html>
Code: Select all
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Type: text/html; charset="iso-8859-1"
Thanks in advance.