diff --git a/email.d b/email.d index 92e920d..3c0c51b 100644 --- a/email.d +++ b/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);