Tagged Questions
2
votes
2answers
2k 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
159 views
“Failure sending Mail” error on program
my friend gave me a program which runs in his laptop, he coded with system.webmail and C#, that program can send the email in his machine, but when i run and send it out in my machine, the email ...
0
votes
1answer
1k 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 ...