5
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("username@gmail.com", "username@gmail.com") { Subject = "subject", IsBodyHtml = true, Body = …
100
c#
email
pdf
itextsharp