Message-ID not set correctly
batje - May 22, 2009 - 00:11
| Project: | SMTP Authentication Support |
| Version: | 6.x-1.0-beta3 |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Jump to:
Description
The mail2web module sets the Header-ID of the email message. In PHPMailer there is a special call for this property. Just do:
case 'message-id':
$mail->MessageID = $value;
break;
//and continue with the rest of the headers:
default:
// The header key is not special - add it as is.
$mail->AddCustomHeader($key .': '. $value);
<./code>
(this issue was also solved in the messaging_phpmailer module:

#1