31

現在、以下の方法を使用して、ユーザーの Outlook メール アカウントを開き、送信する関連コンテンツをメールに入力しています。

public void SendSupportEmail(string emailAddress, string subject, string body)
{
   Process.Start("mailto:" + emailAddress + "?subject=" + subject + "&body=" 
                + body);
}

ただし、メールに添付ファイルを入力できるようにしたいと考えています。

何かのようなもの:

public void SendSupportEmail(string emailAddress, string subject, string body)
{
   Process.Start("mailto:" + emailAddress + "?subject=" + subject + "&body=" 
      + body + "&Attach="
      + @"C:\Documents and Settings\Administrator\Desktop\stuff.txt");
}

ただし、これは機能しないようです。これを機能させる方法を知っている人はいますか!?

大変感謝しております。

よろしく。

4

4 に答える 4

56

デフォルトの電子メール クライアントにアクセスする場合は、MAPI32.dll を使用できます (Windows OS のみで動作します)。次のラッパーを見てください。

http://www.codeproject.com/KB/IP/SendFileToNET.aspx

コードは次のようになります。

MAPI mapi = new MAPI();
mapi.AddAttachment("c:\\temp\\file1.txt");
mapi.AddAttachment("c:\\temp\\file2.txt");
mapi.AddRecipientTo("person1@somewhere.com");
mapi.AddRecipientTo("person2@somewhere.com");
mapi.SendMailPopup("testing", "body text");

// Or if you want try and do a direct send without displaying the mail dialog
// mapi.SendMailDirect("testing", "body text");
于 2009-08-29T20:14:10.413 に答える
11

mailto: 公式には添付ファイルをサポートしていません。Outlook 2003 は次の構文で動作すると聞いています。

<a href='mailto:name@domain.com?Subject=SubjTxt&Body=Bod_Txt&Attachment=""C:\file.txt"" '>

これを処理するより良い方法は、 System.Net.Mail.Attachmentを使用してサーバー上でメールを送信することです。

    public static void CreateMessageWithAttachment(string server)
    {
        // Specify the file to be attached and sent.
        // This example assumes that a file named Data.xls exists in the
        // current working directory.
        string file = "data.xls";
        // Create a message and set up the recipients.
        MailMessage message = new MailMessage(
           "jane@contoso.com",
           "ben@contoso.com",
           "Quarterly data report.",
           "See the attached spreadsheet.");

        // Create  the file attachment for this e-mail message.
        Attachment data = new Attachment(file, MediaTypeNames.Application.Octet);
        // Add time stamp information for the file.
        ContentDisposition disposition = data.ContentDisposition;
        disposition.CreationDate = System.IO.File.GetCreationTime(file);
        disposition.ModificationDate = System.IO.File.GetLastWriteTime(file);
        disposition.ReadDate = System.IO.File.GetLastAccessTime(file);
        // Add the file attachment to this e-mail message.
        message.Attachments.Add(data);

        //Send the message.
        SmtpClient client = new SmtpClient(server);
        // Add credentials if the SMTP server requires them.
        client.Credentials = CredentialCache.DefaultNetworkCredentials;

        try {
          client.Send(message);
        }
        catch (Exception ex) {
          Console.WriteLine("Exception caught in CreateMessageWithAttachment(): {0}", 
                ex.ToString() );              
        }
        data.Dispose();
    }
于 2009-07-28T16:12:38.670 に答える
4

このアプリは本当に Outlook を使用する必要がありますか? System.Net.Mail 名前空間を使用しない理由はありますか?

本当に Outlook を使用する必要がある場合 (変更される可能性が高いサード パーティの依存関係に基づいてアプリを作成しているため、お勧めしません)、Microsoft.Office 名前空間を調べる必要があります。

ここから始めます: http://msdn.microsoft.com/en-us/library/microsoft.office.interop.outlook.aspx

于 2009-07-28T16:09:28.550 に答える