Closed (fixed)
Project:
HTML Mail
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Aug 2016 at 13:17 UTC
Updated:
13 Feb 2017 at 21:14 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
monstrfolk commentedThis is due to using HTML Mail with SMTP Authentication module. Don't know if the bug is because of this module or SMTP Authentication module.
See here... https://www.drupal.org/node/2847707
Comment #3
monstrfolk commentedThis is a problem with this module.
Content-typeshould beContent-TypeThis....
multipart/alternative;boundary=np588cdd5569378Should be.... (boundary key is wrapped in quotations)
multipart/alternative;boundary="np588cdd5569378"Looks like someone got tired while coding :)
Comment #4
monstrfolk commentedComment #5
salvisThank you for the analysis and patch, monstrfolk!
Two double-quotes cannot be right.
Also, according to the example in https://www.w3.org/Protocols/rfc1341/7_2_Multipart.html the double quotes are not mandatory, but I guess the don't hurt.
Comment #6
monstrfolk commentedLooks like I got tired while coding. My IDE added extra quotes and I did not notice. Also, found 2 small spelling mistakes.
Comment #7
monstrfolk commentedComment #9
salvisThanks, monstrfolk!