mirror of https://github.com/adamdruppe/arsd.git
some relays only support email so strip when sending there
This commit is contained in:
parent
792d7c1a10
commit
851f6b144c
20
email.d
20
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;
|
||||
|
|
Loading…
Reference in New Issue