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 = …
100
c#
email
pdf
itextsharp