2

インメモリで作成したPDFファイルをメールテンプレートに添付するのに問題があります。

電子メールは問題なく送信されます..しかし、添付ファイルはありません。なぜこれが起こっているのかわかりません。

プロセスの完全なコードは次のとおりです。

ExtendedEmailTemplate emailTemp = new ExtendedEmailTemplate();
emailTemp.FromAddress = "ABC Ltd <info@abcTechnology.com>";
emailTemp.ToAddress = custEmail;
emailTemp.Body = "This is an Test Email"
emailTemp.IsHTML = true;

// getting the memorystream of cretaed PDF file in memory
MemoryStream pdfStream = MWProductGuaranteedHelper.CreateProductGuaranteeCertificatePDF(custName, guranteeCode, productName);

// getting the MailMessage by passing the memorystream and attach the PDF
MailMessage emailMessage = ExtendedEmailTemplate.GenerateMailMessage(emailTemp, pdfStream);

// sending an email with by passing the (MailMessage)
emailTemp.SendGuaranteeCertificateAttachmentEmail(emailMessage);

メモリ内に PDF を作成

public static MemoryStream CreateProductGuaranteeCertificatePDF(string custName, string guaranteeCode, string productName)
  {
      MemoryStream memoryStream = new MemoryStream();
      string guaranteedUntil = DateTime.Now.AddYears(3).ToString("dd-MM-yyyy");

      string fromFile = Server.MapPath(guaranteeCertificateFilePath);
       PdfReader reader = new PdfReader(fromFile);
       PdfStamper stamper = new PdfStamper(reader, memoryStream);
       AcroFields fields = stamper.AcroFields;

       // AcroFields setting CODE EMITTED 

      stamper.Writer.CloseStream = false;  // making sure that stream stays open after closing the stamper
      stamper.FormFlattening = false;
      stamper.Close();
      reader.Close();

      memoryStream.Position = 0;  // reset the position of the stream, so that attachment works right
      return memoryStream;
  }

メールメッセージを生成する

public static MailMessage GenerateMailMessage(ExtendedEmailTemplate template, MemoryStream _ms)
    {
        MailMessage mailMessage = new MailMessage();
        mailMessage.From = new MailAddress(template.FromAddress);
        mailMessage.To.Add(template.ToAddress);
        mailMessage.Subject = template.Subject;
        mailMessage.Body = template.Body;
        mailMessage.Attachments.Add(new Attachment(_ms, "ABC-Certificate.Pdf", "application/pdf"));
        mailMessage.IsBodyHtml = template.IsHTML;

        return mailMessage;
    }

電子メールを送信します

public void SendGuaranteeCertificateAttachmentEmail(MailMessage _message)
    {
        EmailClient.Send(_message);
    }

 public static void Send(MailMessage mailMessage) // SMTP Settings CODE Emitted. 
        {
                //SEND THE MAIL MESSAGE
                smtpClient.Send(mailMessage);
        }

このコードの何が問題なのかわかりません...電子メールは添付ファイルなしで送信されます。

助けていただければ幸いです。

4

1 に答える 1

2

あなたが間違っていることはわかりませんが、Webページを解析してpdfを作成していますが、似たようなことをしています。これが私がすることです:

  public static Attachment GetPDfAttachmentFromUrl(string url)
        {
            string download = new WebClient().DownloadString(url);

            MemoryStream ms = new MemoryStream();
            Document document = new Document(PageSize.A4, 80, 50, 30, 65);
            PdfWriter writer = PdfWriter.GetInstance(document, ms);
            try
            {
                StringReader stringReader = new StringReader(download);
                List<IElement> parsedList = HTMLWorker.ParseToList(stringReader, null);
                document.Open();
                foreach (object item in parsedList)
                {
                    document.Add((IElement)item);
                }
                document.Close();
                stringReader.Close();

                MemoryStream pdfstream = new MemoryStream(ms.ToArray());
//create attachment
                Attachment attachment = new Attachment(pdfstream, "transaction.pdf");

                return attachment;
            }
            catch (Exception exc)
            {
                Console.Error.WriteLine(exc.Message);
            }
            return null;
        }

次に、別の場所で次のように送信します。

  MailMessage mm = new MailMessage(from, to);
        mm.Body = body;
        mm.Subject = subject;
        mm.IsBodyHtml = true;
        mm.Attachments.Add(attachment);
        SmtpClient smtp = new SmtpClient();
        smtp.Send(mm);

これはまったく役に立ちますか?

于 2012-08-02T09:08:20.510 に答える