0

私の要件は、PDFファイルを電子メールに添付し、C#コードを使用してデフォルトのメールクライアント(OutlookやWindows Liveメールなど)で開くことです。

これは、ユーザーが既定として構成した既定の電子メール クライアントで行う必要があります。

これにMAPIをチェックしました。ただし、これを行うための適切なコードが見つかりませんでした

これは私が使用したコードです

 MailMessage message = new MailMessage();
        Attachment data = new Attachment(file, MediaTypeNames.Application.Octet);
        ContentDisposition disposition = data.ContentDisposition;
        disposition.CreationDate = System.IO.File.GetCreationTime(file);
        disposition.ModificationDate = System.IO.File.GetLastWriteTime(file);
        disposition.ReadDate = System.IO.File.GetLastWriteTime(file);
        message.Attachments.Add(data);
4

1 に答える 1

1

以下のコードを試してください:

List<System.Net.Mail.Attachment> lstAttachment = new List<System.Net.Mail.Attachment>(); 
if (File.Exists(AttachmentFilePath))//AttachmentFilePath is path of attachment   
{
   PDF = new System.Net.Mail.Attachment(AttachmentFilePath);
   PDF.Name = "DEMO_PDF.pdf";
   lstAttachment.Add(PDF);
   objMailer.Attachments = lstAttachment;//objMailer is mail client object.
}
于 2013-01-22T04:54:12.620 に答える