- Newest
- Most votes
- Most comments
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
Relevant content
- asked 2 years ago