我試圖WebMail.Send()
發送郵件到多個電子郵件ID。 MSDN library page明確指出多個電子郵件ID應以分號(;)分隔。然而,當我嘗試發送郵件到多個ID時,我收到FormatException
,郵件內容爲 「郵件頭中發現無效字符:';' 。但是如果我發送郵件到單個receipent,郵件被正確地傳遞WebMail.Send()引發FormatException
所以,我怎麼使用WebMail.Send()
也許我失去了一些東西很明顯的發郵件給多個receipents
編輯:? 這裏是我使用的代碼。
string [] selectedUserIds = GetEmailIds();
string to = string.Join(";", selectedUserIds);
WebMail.Send(to: to, subject: subject, body: message, cc: cc, filesToAttach: attachments, isBodyHtml:true);
你能發表一些代碼嗎? – Mrchief