omg to and cc are not supposed to be the same

This commit is contained in:
Adam D. Ruppe 2024-09-13 07:51:55 -04:00
parent b1c1d86fb8
commit 20e675ee99
1 changed files with 1 additions and 1 deletions

View File

@ -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);