Word 文書をメールに添付する必要があります。
ドキュメントはソリューション内の「Attachments」というフォルダに保存されています
質問
Word 文書を電子メールに添付するためにどのパスを使用する必要があるのか疑問に思っていました。また、正しく添付されているかどうかも知りたいです。
これが私がやっている方法です:
string fileName = "~/Attachments/worddocument.doc";
MailMessage mail = new MailMessage
{
Sender = new MailAddress(this.SenderAddress, this.SenderName),
From = new MailAddress(this.FromAddress, this.FromName),
ReplyToList = { new MailAddress(this.ReplyToAddress, this.ReplyToName) },
IsBodyHtml = this.isBodyHtml,
Subject = this.UserSubject,
Attachments.Add(new Attachment(fileName, MediaTypeNames.Application.Octet));
};
それはどのように見えますか?パスを正しく指定しましたか?
ありがとう