Par défaut, en bas des messages envoyés via phplist une image et un lien powered by phplist sont insérés. La procédure ci-dessous permet de les retirer.
Éditer le fichier de configuration config.php
cd ./web/public_html/lists/config vim config.php
Définir la valeur de la constante EMAILTEXTCREDITS à 1
# If you want to remove the image from the HTML emails, set this constant # to be 1, the HTML emails will then only add a line of text as signature # define("EMAILTEXTCREDITS",0); define("EMAILTEXTCREDITS",1);
Ceci replacera l'image introduite dans le mail par une ligne de texte. On peut alors redéfinir le texte par une chaîne de caractères vide.
Dans le dossier ./web/public_html/lists/admin
éditer le fichier connect.php. Commenter la définition de la variable $PoweredByText et remplacer la définition par une chaîne vide
/* $PoweredByText = '<div style="clear: both; font-family: arial, verdana, sans-serif; font-size: 8px; font-variant: small-caps; font-weight: normal; padding: 2px; padding-left:10px;padding-top:20px;">powered by <a href="https://www.phplist.com/poweredby?utm_source=download'.$v.'&utm_medium=poweredtxt&utm_campaign=phpList" target="_blank" title="powered by phpList version '.$v.', © phpList ltd">phpList</a></div>'; */ $PoweredByText = '';