web-dev-qa-db-ja.com

iTextSharp-電子メールの添付ファイルでインメモリPDFを送信する

ここでいくつか質問をしましたが、まだ問題があります。私のコードで私が間違っていることを教えていただければ幸いです。 ASP.Netページから上記のコードを実行すると、「閉じたストリームにアクセスできません」というメッセージが表示されます。

var doc = new Document();

MemoryStream memoryStream = new MemoryStream();

PdfWriter.GetInstance(doc, memoryStream);
doc.Open();
doc.Add(new Paragraph("First Paragraph"));
doc.Add(new Paragraph("Second Paragraph"));

doc.Close(); //if I remove this line the email attachment is sent but with 0 bytes 

MailMessage mm = new MailMessage("[email protected]", "[email protected]")
{
    Subject = "subject",
    IsBodyHtml = true,
    Body = "body"
};

mm.Attachments.Add(new Attachment(memoryStream, "test.pdf"));
SmtpClient smtp = new SmtpClient
{
    Host = "smtp.gmail.com",
    Port = 587,
    EnableSsl = true,
    Credentials = new NetworkCredential("[email protected]", "my_password")
};

smtp.Send(mm); //the "Cannot Access a Closed Stream" error is thrown here

ありがとう!!!

編集:

この質問の答えを探している人を助けるために、ファイルを物理的に作成せずに電子メールに添付されたpdfファイルを送信するコードを以下に示します(IchibanとBrianngのおかげです):

var doc = new Document();
MemoryStream memoryStream = new MemoryStream();
PdfWriter writer = PdfWriter.GetInstance(doc, memoryStream);

doc.Open();
doc.Add(new Paragraph("First Paragraph"));
doc.Add(new Paragraph("Second Paragraph"));

writer.CloseStream = false;
doc.Close();
memoryStream.Position = 0;

MailMessage mm = new MailMessage("[email protected]", "[email protected]")
{
    Subject = "subject",
    IsBodyHtml = true,
    Body = "body"
};

mm.Attachments.Add(new Attachment(memoryStream, "filename.pdf"));
SmtpClient smtp = new SmtpClient
{
    Host = "smtp.gmail.com",
    Port = 587,
    EnableSsl = true,
    Credentials = new NetworkCredential("[email protected]", "password")

};

smtp.Send(mm);
97
Gus Cavalcanti

やってみました:

PdfWriter writer = PdfWriter.GetInstance(doc, memoryStream);

// Build pdf code...

writer.CloseStream = false;
doc.Close();

// Build email

memoryStream.Position = 0;
mm.Attachments.Add(new Attachment(memoryStream, "test.pdf"));

私の記憶が私に正しく役立つなら、これは以前のプロジェクトで同様の問題を解決しました。

http://forums.asp.net/t/1093198.aspx を参照してください

79
brianng

brianng が投稿したコードを試してみましたが、うまくいきました。コードの先頭をこれに変更するだけです:

var doc = new Document();
MemoryStream memoryStream = new MemoryStream();
PdfWriter writer = PdfWriter.GetInstance(doc, memoryStream); //capture the object
doc.Open();
doc.Add(new Paragraph("First Paragraph"));
doc.Add(new Paragraph("Second Paragraph"));
writer.CloseStream = false; //set the closestream property
doc.close(); //close the document without closing the underlying stream
memoryStream.Position = 0;

/* remainder of your code stays the same*/
18
ichiban

おそらくdoc.Close()を呼び出して、基礎となるストリームを破棄します。 doc.Close()を削除して、その行の代わりにmemoryStream.Position = 0;を設定してください。

または、一時ファイルを使用できます。

var tempFilePath = Path.GetTempFileName();

try 
{           
    var doc = new Document();

    PdfWriter.GetInstance(doc, File.OpenWrite(tempFilePath));
    doc.Open();
    doc.Add(new Paragraph("First Paragraph"));
    doc.Add(new Paragraph("Second Paragraph"));

    doc.Close();

    MailMessage mm = new MailMessage("[email protected]", "[email protected]")
    {
        Subject = "subject",
        IsBodyHtml = true,
        Body = "body"
    };

    mm.Attachments.Add(new Attachment(tempFilePath, "test.pdf"));
    SmtpClient smtp = new SmtpClient
    {
        Host = "smtp.gmail.com",
        Port = 587,
        EnableSsl = true,
        Credentials = new NetworkCredential("[email protected]", "my_password")
    };

    smtp.Send(mm);
}
finally
{
    File.Delete(tempFilePath);
}
3
huseyint

flushドキュメントまたはメモリストリームを追加し、添付後に閉じますか?

3

私は同じ問題を抱えていたので、この投稿を使ってそれを解決しました。

PdfWriter writer = PdfWriter.GetInstance(doc, memoryStream);

// Build pdf code...

writer.CloseStream = false;
doc.Close();

// Build email

memoryStream.Position = 0;
mm.Attachments.Add(new Attachment(memoryStream, "test.pdf"));

書く代わりに

writer.CloseStream = false and memoryStream.Position = 0;

新しいストリームを作成するだけです

MemoryStream m = new MemoryStream(memoryStream);

そして、呼び出します

mm.Attachments.Add(new Attachment(memoryStream, "test.pdf"));

両方とも機能しますが、新しいストリームを作成する方が良いと思います

1
Zein Sleiman