I"m not a Drupal wiz so the problem may be elsewhere, but at the moment in smtp.module:869 we have:
'from' => $message['headers']['Sender'],
At least in mimemail I never see 'Sender' added to headers, but the smtp_mailengine is passed a sender as part of the $message array, so this should maybe be:
'from' => $message['sender'],
That change was apparently required on my end to use the mimemail() method in my own code (along with SMTP Auth).
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | 694222.patch | 561 bytes | attiks |
Comments
Comment #1
TripleEmcoder commentedConfirmed.
It should be either:
'from' => $message['sender'],
Or:
'from' => $message['headers']['From'],
Comment #2
peterpoe commentedConfirming still a bug in dev + subscribing.
Comment #3
attiks commentedComment #4
franzThank you! Commited on 6.x-dev
Going to 7.x
Comment #5
franzCommited on 7.x as well.