How to remove ” powered by PHPList ” from email footer.
Edit sendemaillib.php in admin directory
Replace
$text[“signature”] = “\n\n–\nPowered by PHPlist, www.phplist.com –\n\n”;
With
$text[“signature”] = “”;
For Ver. 2.10.12 – change both text + html sig’s :
$text[“signature”] = “”;
$html[“signature”] = “”;
thanks to Jimbob for the tip.
This is not working in version 2.10.12
This worked great thanks so much.
Under version 2.10.12, this only change/removes powered by line in text emails, but not in html emails.
This does work for 2.10.12 – change both text + html sig’s :
$text[“signature”] = “”;
$html[“signature”] = “”;
Thanks,
This is working
I changed both sigs and it still didnt work on the new version. Only text, not HTML> do you have to mess with the other sig lines? i pulled out every reference to a png picture as well. Also set config to no registration.
$html[“signature”] = $PoweredByImage;#’‘;
This is another sig i didnt want to fool with but I pulled all the references to the pic out of there too and still not working in html.
where do i go and change the codes because i am not good at coding please help
i am using php version 2.10.19
Jimmy: You can replace
$html[“signature”] = $PoweredByImage;#’‘;
with
$html[“signature”] = “”;
csapic: go to folder
yourdomain.com/phplistfolder/admin
edit sendemaillib.php
Great, thanks for all this