We are sending an automated email with mail's body in HTML format and we are receiving the email content twice in the body.Once with this header
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="----=_NextPart_000_00F5_01D2C509.C9598370"
X-Mailer: Microsoft Outlook 16.0
Thread-Index: AdLE260N6ZrXujJMTE6odOelzNRIhw==
Content-Language: en-us
This is a multipart message in MIME format.
------=_NextPart_000_00F5_01D2C509.C9598370
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit
and then with this header
------=_NextPart_000_00F5_01D2C509.C9598370
Content-Type: text/html;
charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
also tried having the Content-Transfer-Encoding
header in html having one of these values "BASE64" / "QUOTED-PRINTABLE" / "8BIT" / "7BIT" / "BINARY" / "x-token"
.
But still having the same headers of MIME in the received mail.
So firstly, Is Content-Transfer-Encoding an HTML header? If yes, will changing the value of this header to a correct value will fix this issue?