mirror of https://github.com/adamdruppe/arsd.git
omg to and cc are not supposed to be the same
This commit is contained in:
parent
b1c1d86fb8
commit
20e675ee99
2
email.d
2
email.d
|
@ -497,7 +497,7 @@ class EmailMessage {
|
|||
if(to.length)
|
||||
headers ~= "To: " ~ to.toProtocolString(this.linesep);
|
||||
if(cc.length)
|
||||
headers ~= "Cc: " ~ to.toProtocolString(this.linesep);
|
||||
headers ~= "Cc: " ~ cc.toProtocolString(this.linesep);
|
||||
|
||||
if(from.length)
|
||||
headers ~= "From: " ~ from.toProtocolString(this.linesep);
|
||||
|
|
Loading…
Reference in New Issue