PHPlist: Como quitar el pie del mail: “POWERED BY PHPLIST WWW.PHPLIST.COM”
10 diciembre 2012 – 11:20Para 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:
$text["signature"] = "\n\n--\npowered by phpList, www.phplist.com --\n\n";
Por esta otra (simplemente igualamos a “” )
$text["signature"] = "";
Hazlo mismo con las siguientes líneas:
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;
}
Y déjalo así:
if (!EMAILTEXTCREDITS) {
$html["signature"] = "";
# oops, accidentally became spyware, never intended that, so take it out again
$html["signature"] = "";
} else {
$html["signature"] = "";
}
De esta manera no aparecerá el footer en los correos que envíes


