添付ファイルが utf8 エンコーディングとして保存されている添付ファイル付きの電子メールを送信できる例はありますか。試してみましたが、メモ帳で開くと、エンコードがASCIIであると表示されます。注:最初にファイルを保存したくないことに注意してください。
// Init the smtp client and set the network credentials
SmtpClient smtpClient = new SmtpClient();
smtpClient.Host = getParameters("MailBoxHost");
// Create MailMessage
MailMessage message = new MailMessage("team@ccccc.co.nz",toAddress,subject, body);
using (MemoryStream memoryStream = new MemoryStream())
{
byte[] contentAsBytes = Encoding.UTF8.GetBytes(attachment);
memoryStream.Write(contentAsBytes, 0, contentAsBytes.Length);
// Set the position to the beginning of the stream.
memoryStream.Seek(0, SeekOrigin.Begin);
// Create attachment
ContentType contentType = new ContentType();
contentType.Name = attachementname;
contentType.CharSet = "UTF-8";
System.Text.Encoding inputEnc = System.Text.Encoding.UTF8;
Attachment attFile = new Attachment(memoryStream, contentType);
// Add the attachment
message.Attachments.Add(attFile);
// Send Mail via SmtpClient
smtpClient.Send(message);
}