Para quitar el pie que aparece en los mails enviados mediante PHPlist («POWERED BY PHPLIST WWW.PHPLIST.COM») hay que editar el archivo sendemaillib.php que está en la ruta phplist/admin/
Busca y cambia la siguiente línea de código:
[PHP]
$text[«signature»] = «\n\n–\npowered by phpList, www.phplist.com –\n\n»;
[/PHP]
Por esta otra (simplemente igualamos a «» )
[PHP]
$text[«signature»] = «»;
[/PHP]
Hazlo mismo con las siguientes líneas:
[PHP]
if (!EMAILTEXTCREDITS) {
$html[«signature»] = $PoweredByImage;#'<div align=»center» id=»signature»><a href=»http://www.phplist.com»><img src=»powerphplist.png» width=88 height=31 title=»Powered by PHPlist» alt=»Powered by PHPlist» border=»0″></a></div>’;
# oops, accidentally became spyware, never intended that, so take it out again 🙂
$html[«signature»] = preg_replace(‘/src=».*power-phplist.png»/’,’src=»powerphplist.png»‘,$html[«signature»]);
} else {
$html[«signature»] = $PoweredByText;
}
[/PHP]
Y déjalo así:
[PHP]
if (!EMAILTEXTCREDITS) {
$html[«signature»] = «»;
# oops, accidentally became spyware, never intended that, so take it out again 🙂
$html[«signature»] = «»;
} else {
$html[«signature»] = «»;
}
[/PHP]
De esta manera no aparecerá el footer en los correos que envíes
Deja una respuesta