Send email with attachment from a specific url in C#

后端 未结 2 1718
-上瘾入骨i
-上瘾入骨i 2021-01-23 05:26

In my view, users can search for a document and once they get the result, they can click on its id and they can download the document from specific url based on id: http://test.

2条回答
  •  有刺的猬
    2021-01-23 06:23

    If the PDF file is generated on an external site, you will need to download it in some way, for this you can use WebClient:

    var client = new WebClient();
    
    // Download the PDF file from external site (pdfUrl) 
    // to your local file system (pdfLocalFileName)
    client.DownloadFile(pdfUrl, pdfLocalFileName);  
    

    Then you can use it on Attachment:

    attachment = new Attachment(pdfLocalFileName, MediaTypeNames.Application.Pdf);
    msg.Attachments.Add(attachment)
    

提交回复
热议问题