मैंने यहाँ कुछ प्रश्न पूछे हैं लेकिन अभी भी समस्याएँ हैं। मुझे खुशी होगी अगर आप मुझे बता सकते हैं कि मैं अपने कोड में क्या गलत कर रहा हूं। मैं 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 = "body"
};
mm.Attachments.Add(new Attachment(memoryStream, "test.pdf"));
SmtpClient smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
Credentials = new NetworkCredential("username@gmail.com", "my_password")
};
smtp.Send(mm); //the "Cannot Access a Closed Stream" error is thrown here
धन्यवाद!!!
संपादित करें:
इस प्रश्न के उत्तर की तलाश करने वाले किसी व्यक्ति की मदद करने के लिए, एक ईमेल से जुड़ी एक पीडीएफ फाइल भेजने के लिए कोड भौतिक रूप से फ़ाइल बनाने के बिना नीचे है (इचिबन और ब्रायन के लिए धन्यवाद):
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("username@gmail.com", "username@gmail.com")
{
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("username@gmail.com", "password")
};
smtp.Send(mm);
position=0
। मुझे बचाया!