0
votes
1answer
480 views
Send mail to multiple recipients with attachment ASP.NET
I am building a simple e-mail application to send emails to a list of people with an attachment.
To be able to add an attachment (from what I have found out) I need to use System.Web.Mail.
Is there …
1
vote
2answers
530 views
Porting System.Web.Mail functionality to System.Net.Mail
The following function works perfectly:
protected void SendWebMailMessage(string DisplayName, string From, string ReplyTo,
string To, string Subject, string Body, string Attachments)
…
1
vote
2answers
494 views
System.Net.Mail.MailMessage Fields Dictionary
Hi,
We’re currently in the process of updating the email dispatch part of our application to replace the deprecated set of classes under System.Web.Mail with the System.Net.Mail classes.
The …
