MailMessage オブジェクトをディスクに保存するにはどうすればよいですか? MailMessage オブジェクトは、Save() メソッドを公開しません。
*.eml または *.msg のいずれの形式で保存しても問題ありません。これを行う方法はありますか?
MailMessage オブジェクトをディスクに保存するにはどうすればよいですか? MailMessage オブジェクトは、Save() メソッドを公開しません。
*.eml または *.msg のいずれの形式で保存しても問題ありません。これを行う方法はありますか?
簡単にするために、 Connect アイテムから説明を引用します。
ネットワークではなくファイル システムに電子メールを送信するように SmtpClient を実際に構成できます。次のコードを使用して、プログラムでこれを行うことができます。
SmtpClient client = new SmtpClient("mysmtphost"); client.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory; client.PickupDirectoryLocation = @"C:\somedirectory"; client.Send(message);
これは、アプリケーション構成ファイルで次のように設定することもできます。
<configuration>
<system.net>
<mailSettings>
<smtp deliveryMethod="SpecifiedPickupDirectory">
<specifiedPickupDirectory pickupDirectoryLocation="C:\somedirectory" />
</smtp>
</mailSettings>
</system.net>
</configuration>
電子メールを送信すると、指定したディレクトリに電子メール ファイルが追加されます。その後、別のプロセスで電子メール メッセージをバッチ モードで送信できます。
とにかく送信しないため、リストされているコンストラクターの代わりに空のコンストラクターを使用できるはずです。
MailMessage を EML データを含むストリームに変換する拡張メソッドを次に示します。ファイルシステムを使用するため、明らかに少しハックですが、機能します。
public static void SaveMailMessage(this MailMessage msg, string filePath)
{
using (var fs = new FileStream(filePath, FileMode.Create))
{
msg.ToEMLStream(fs);
}
}
/// <summary>
/// Converts a MailMessage to an EML file stream.
/// </summary>
/// <param name="msg"></param>
/// <returns></returns>
public static void ToEMLStream(this MailMessage msg, Stream str)
{
using (var client = new SmtpClient())
{
var id = Guid.NewGuid();
var tempFolder = Path.Combine(Path.GetTempPath(), Assembly.GetExecutingAssembly().GetName().Name);
tempFolder = Path.Combine(tempFolder, "MailMessageToEMLTemp");
// create a temp folder to hold just this .eml file so that we can find it easily.
tempFolder = Path.Combine(tempFolder, id.ToString());
if (!Directory.Exists(tempFolder))
{
Directory.CreateDirectory(tempFolder);
}
client.UseDefaultCredentials = true;
client.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory;
client.PickupDirectoryLocation = tempFolder;
client.Send(msg);
// tempFolder should contain 1 eml file
var filePath = Directory.GetFiles(tempFolder).Single();
// stream out the contents
using (var fs = new FileStream(filePath, FileMode.Open))
{
fs.CopyTo(str);
}
if (Directory.Exists(tempFolder))
{
Directory.Delete(tempFolder, true);
}
}
}
次に、返されたストリームを取得して、ディスク上の別の場所に保存したり、データベース フィールドに保存したり、添付ファイルとして電子メールで送信したりするなど、必要な操作を行うことができます。
Mailkitを使用している場合。以下のコードを書くだけ
string fileName = "your filename full path";
MimeKit.MimeMessage message = CreateMyMessage ();
message.WriteTo(fileName);
これを試して
これらの 2 つの参照を使用してください ( MailBee を使用;) ( MailBee.Mime を使用;)
public static string load(string to,string from,string cc,string bcc,string subject,string body, List<string> reportList,string path, bool HtmlbodyType)
{
try
{
MailBee.Mime.MailMessage msg = new MailBee.Mime.MailMessage();
msg.From.AsString = from;
msg.Subject = subject;
if (HtmlbodyType == true)
{
msg.BodyHtmlText = body;
}
else
{
msg.BodyPlainText = body;
}
string[] receptionEmail = to.Split(new string[] { ",", ";" }, StringSplitOptions.RemoveEmptyEntries);
string[] ccEmail = cc.Split(new string[] { ",", ";" }, StringSplitOptions.RemoveEmptyEntries);
string[] bccEmail = bcc.Split(new string[] { ",", ";" }, StringSplitOptions.RemoveEmptyEntries);
string message = "";
foreach (string To in receptionEmail)
{
msg.To.Add(To);
}
foreach (string CC in ccEmail)
{
msg.Cc.Add(CC);
}
foreach (string Bcc in bccEmail)
{
msg.Bcc.Add(Bcc);
}
for (int x = 0; x < reportList.Count; x++)
{
string fileName = reportList[x];
msg.Attachments.Add(fileName);
}
msg.SaveMessage(path);
return "Success";
}
catch (Exception ex)
{
return ex.Message;
}
}