From 851f6b144c4aa2c92b25f3e83adde4167ae49ca0 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 29 Oct 2020 14:47:06 -0400 Subject: [PATCH] some relays only support email so strip when sending there --- email.d | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/email.d b/email.d index 039a78d..35f3f7a 100644 --- a/email.d +++ b/email.d @@ -282,7 +282,25 @@ class EmailMessage { if(mailServer.username.length) smtp.setAuthentication(mailServer.username, mailServer.password); - const(char)[][] allRecipients = cast(const(char)[][]) (to ~ cc ~ bcc); // WTF cast + + const(char)[][] allRecipients; + void processPerson(string person) { + auto idx = person.indexOf("<"); + if(idx == -1) + allRecipients ~= person; + else { + person = person[idx + 1 .. $]; + idx = person.indexOf(">"); + if(idx != -1) + person = person[0 .. idx]; + + allRecipients ~= person; + } + } + foreach(person; to) processPerson(person); + foreach(person; cc) processPerson(person); + foreach(person; bcc) processPerson(person); + smtp.mailTo(allRecipients); auto mailFrom = from;