回答:
これがサンプルコードです。
System.IO.MemoryStream ms = new System.IO.MemoryStream();
System.IO.StreamWriter writer = new System.IO.StreamWriter(ms);
writer.Write("Hello its my sample file");
writer.Flush();
writer.Dispose();
ms.Position = 0;
System.Net.Mime.ContentType ct = new System.Net.Mime.ContentType(System.Net.Mime.MediaTypeNames.Text.Plain);
System.Net.Mail.Attachment attach = new System.Net.Mail.Attachment(ms, ct);
attach.ContentDisposition.FileName = "myFile.txt";
// I guess you know how to send email with an attachment
// after sending email
ms.Close();
編集1
次のようなSystem.Net.Mime.MimeTypeNamesで他のファイルタイプを指定できます。 System.Net.Mime.MediaTypeNames.Application.Pdf
MIMEタイプに基づいて、たとえばFileNameに正しい拡張子を指定する必要があります"myFile.pdf"
System.Net.Mime.MediaTypeNames.Application.Pdf
writer.Disopose()
私のソリューションには早すぎましたが、他のすべては素晴らしい例です。
ms.Position = 0;
添付ファイルを作成する前にがあるはずです。
少し遅れたエントリ-うまくいけば、そこにいる誰かにとってまだ役に立つでしょう:-
これは、メモリ内の文字列を電子メールの添付ファイル(この場合はCSVファイル)として送信するための簡略化されたスニペットです。
using (var stream = new MemoryStream())
using (var writer = new StreamWriter(stream)) // using UTF-8 encoding by default
using (var mailClient = new SmtpClient("localhost", 25))
using (var message = new MailMessage("me@example.com", "you@example.com", "Just testing", "See attachment..."))
{
writer.WriteLine("Comma,Seperated,Values,...");
writer.Flush();
stream.Position = 0; // read from the start of what was written
message.Attachments.Add(new Attachment(stream, "filename.csv", "text/csv"));
mailClient.Send(message);
}
StreamWriterと基になるストリームは、メッセージが送信されるまで(を回避するためObjectDisposedException: Cannot access a closed Stream
)に破棄しないでください。
stream.position = 0;
stream.Position=0
でした。
これの確認がどこにも見つからなかったため、MailMessageおよび/またはAttachmentオブジェクトを破棄すると、ロードされたストリームが予想どおりに破棄されるかどうかをテストしました。
次のテストでは、MailMessageが破棄されると、添付ファイルの作成に使用されるすべてのストリームも破棄されるように見えます。したがって、MailMessageを破棄する限り、それを作成するために使用されたストリームは、それ以上の処理を必要としません。
MailMessage mail = new MailMessage();
//Create a MemoryStream from a file for this test
MemoryStream ms = new MemoryStream(File.ReadAllBytes(@"C:\temp\test.gif"));
mail.Attachments.Add(new System.Net.Mail.Attachment(ms, "test.gif"));
if (mail.Attachments[0].ContentStream == ms) Console.WriteLine("Streams are referencing the same resource");
Console.WriteLine("Stream length: " + mail.Attachments[0].ContentStream.Length);
//Dispose the mail as you should after sending the email
mail.Dispose();
//--Or you can dispose the attachment itself
//mm.Attachments[0].Dispose();
Console.WriteLine("This will throw a 'Cannot access a closed Stream.' exception: " + ms.Length);
実際に.pdfを追加したい場合は、メモリストリームの位置をゼロに設定する必要があることがわかりました。
var memStream = new MemoryStream(yourPdfByteArray);
memStream.Position = 0;
var contentType = new System.Net.Mime.ContentType(System.Net.Mime.MediaTypeNames.Application.Pdf);
var reportAttachment = new Attachment(memStream, contentType);
reportAttachment.ContentDisposition.FileName = "yourFileName.pdf";
mailMessage.Attachments.Add(reportAttachment);
あなたがしているすべてが文字列を付けることであるなら、あなたはたった2行でそれをすることができます:
mail.Attachments.Add(Attachment.CreateAttachmentFromString("1,2,3", "text/csv");
mail.Attachments.Last().ContentDisposition.FileName = "filename.csv";
StreamWriterでメールサーバーを使用して動作させることができませんでした。
StreamWriterを使用すると、多くのファイルプロパティ情報が欠落し、サーバーが何が欠けているのが気に入らなかったのでしょう。
Attachment.CreateAttachmentFromString()を使用すると、必要なものがすべて作成され、うまく機能します。
それ以外の場合は、メモリ内のファイルを取得し、MemoryStream(byte [])を使用してファイルを開き、StreamWriterをすべてスキップすることをお勧めします。
この質問にたどり着いたのは、コードで生成したExcelファイルをとして添付する必要があったためですMemoryStream
。メールメッセージに添付することはできましたが、意図されていた〜6KBではなく64Bytesファイルとして送信されました。だから、私のために働いた解決策はこれでした:
MailMessage mailMessage = new MailMessage();
Attachment attachment = new Attachment(myMemorySteam, new ContentType(MediaTypeNames.Application.Octet));
attachment.ContentDisposition.FileName = "myFile.xlsx";
attachment.ContentDisposition.Size = attachment.Length;
mailMessage.Attachments.Add(attachment);
の値を設定attachment.ContentDisposition.Size
すると、正しいサイズの添付ファイルでメッセージを送信できます。
OTHER OPENメモリストリームを使用します。
MVC4 C#コントローラーでのPDFの起動とPDFの送信の例
public void ToPdf(string uco, int idAudit)
{
Response.Clear();
Response.ContentType = "application/octet-stream";
Response.AddHeader("content-disposition", "attachment;filename= Document.pdf");
Response.Buffer = true;
Response.Clear();
//get the memorystream pdf
var bytes = new MisAuditoriasLogic().ToPdf(uco, idAudit).ToArray();
Response.OutputStream.Write(bytes, 0, bytes.Length);
Response.OutputStream.Flush();
}
public ActionResult ToMail(string uco, string filter, int? page, int idAudit, int? full)
{
//get the memorystream pdf
var bytes = new MisAuditoriasLogic().ToPdf(uco, idAudit).ToArray();
using (var stream = new MemoryStream(bytes))
using (var mailClient = new SmtpClient("**YOUR SERVER**", 25))
using (var message = new MailMessage("**SENDER**", "**RECEIVER**", "Just testing", "See attachment..."))
{
stream.Position = 0;
Attachment attach = new Attachment(stream, new System.Net.Mime.ContentType("application/pdf"));
attach.ContentDisposition.FileName = "test.pdf";
message.Attachments.Add(attach);
mailClient.Send(message);
}
ViewBag.errMsg = "Documento enviado.";
return Index(uco, filter, page, idAudit, full);
}
stream.Position=0;
私を助けたラインです。それがなければ、私の添付ファイルはいくつかのkBの504バイトだけでした
このコードはあなたに役立つと思います:
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Net.Mail;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnSubmit_Click(object sender, EventArgs e)
{
try
{
MailAddress SendFrom = new MailAddress(txtFrom.Text);
MailAddress SendTo = new MailAddress(txtTo.Text);
MailMessage MyMessage = new MailMessage(SendFrom, SendTo);
MyMessage.Subject = txtSubject.Text;
MyMessage.Body = txtBody.Text;
Attachment attachFile = new Attachment(txtAttachmentPath.Text);
MyMessage.Attachments.Add(attachFile);
SmtpClient emailClient = new SmtpClient(txtSMTPServer.Text);
emailClient.Send(MyMessage);
litStatus.Text = "Message Sent";
}
catch (Exception ex)
{
litStatus.Text = ex.ToString();
}
}
}