SES SMTP 554 Transaction failed "unbalanced quoted string"

0

The error message provides no hint which header might be implicated nor what exactly "unbalanced" means. I've redacted the email addresses.

{"MIME-Version":"1.0","Sender":"EDAS Conference Manager <email>","From":"x@domain","Date":"Sun, 13 Apr 2025 16:16:05 +0000","Reply-to":"Sabreen Fawzi Raheem <email>","To":"Yussif Al-Mulla <email>, \"Zainab A. Alwani\"\r\n <email>, Shaima Muqbel Asal <email>,\r\n Editor In Chief <email>, Wael M El-Medany\r\n <email>, Ijcds Secretary <email>","Message-ID":"<20250413-161605-4831@edas.info>","Subject":"[IJCDS: chairs] APC payment","Return-Path":"email","Content-Type":"multipart\/mixed;\r\n boundary=\"0000000000007caf440632ab4060\"","Content-Transfer-Encoding":"quoted-printable"}

1 Answer
0

Try formatting the To field so that:

Every name/email pair is consistently formatted like: "Full Name" <email>

No stray or unmatched quotes.

Avoid line breaks (\r\n) inside the To header—these must follow header folding rules.

Example of Correct Format:

"To": ""Yussif Al-Mulla" <email>, "Zainab A. Alwani" <email>, "Shaima Muqbel Asal" <email>, "Editor In Chief" <email>, "Wael M El-Medany" <email>, "Ijcds Secretary" <email>" Or without extra escaping (if you're working in code):

To: "Yussif Al-Mulla" <email>, "Zainab A. Alwani" <email>, "Shaima Muqbel Asal" <email>, "Editor In Chief" <email>, "Wael M El-Medany" <email>, "Ijcds Secretary" <email> Extra Tip: If you're composing this message programmatically (e.g., using Python or JavaScript), use a proper email message library like: Python: email.message.EmailMessage or email.utils.formataddr() Node.js: nodemailer handles formatting for you. Let me know what language you're using, and I can help you reformat your code!

regards, M Zubair https://zeonedge.com

answered a month ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions