5.x-1.0
While testing some a mailing list on my sandbox a test message went out...
The mail section of the "mass contact"module is posted below.
// Send the e-mail to the recipients:
if (module_exists('mimemail') && variable_get('mimemail_alter', 0) == 1) {
$success = mimemail($from, $to, $subject, $body, NULL, $headers, NULL, $message_attachment);
}
else {
$success = drupal_mail('mass-contact-page-mail', $to, $subject, $body, $from, $headers);
}
We do not have mimemail installed on the server
Any thoughts about this?
Thanks
Comments
Comment #1
kbahey commentedI don't use mass mail myself. I checked the code for Drupal 5.x and there is no reference to mimemail at all.
The reroute email module should intercept all calls to drupal_mail().
Add a few print's or watchdog() to the code and trace what it is doing.
Comment #2
dydave commentedThis issue seems to be pretty outdated now, so I allowed myself to mark it as closed (won't fix).
kbahey clearly explained how this issue could be further tested and traced down, then Will Kirchheimer didn't follow up with any more reply (perhaps the problem got fixed in another module).
In any case, if anyone else encounters the same problem, then we would most likely recommend opening a new ticket for it.
Feel free to re-open this issue at anytime if you would have anything to add to it.
Thanks very much to all for your feedbacks, comments and help improving this module.
Cheers!