I use php address book to manage large mailing lists, and out of respect for user's privacy, I send all maill "bcc."
Is there a way for all mailto to come out as "bcc" instead of "to"?
(I use thunderbird, and have not found an addon to do this.)
Worked like a charm, thanks!
Just replace in "include/mailer.inc.php"
Old: $mailers['Standard (mailto:)'] = "mailto:";
New: $mailers['Standard (mailto:)'] = "mailto:?bcc=";
Log in to post a comment.
I use php address book to manage large mailing lists, and out of respect for user's privacy, I send all maill "bcc."
Is there a way for all mailto to come out as "bcc" instead of "to"?
(I use thunderbird, and have not found an addon to do this.)
Worked like a charm, thanks!
Just replace in "include/mailer.inc.php"
Old:
$mailers['Standard (mailto:)'] = "mailto:";
New:
$mailers['Standard (mailto:)'] = "mailto:?bcc=";