Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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) ...
2
votes
2answers
1k views

System.Net.Mail.MailMessage Fields Dictionary

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 changes ...
1
vote
2answers
134 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
35 views

can we use system.web.mail in wcf?

can we use system.web.mail in wcf library if yes then how can i get system.web.mail.dll
0
votes
1answer
60 views

Does a certificate have to be valid to mail using CDOSYS and SMTPS?

Due to a limitation on our SMTP provder's side, we're having to use System.Web.Mail (deprecated), which is a wrapper around CDOSSYS. Because we'd like to avoid having to change multiple ...
0
votes
1answer
526 views

Are SMTP relay requirements for System.Net.Mail different than System.Web.Mail

I deployed my web app to our production IIS 6.0 server and everything is working except when my code attempts to send email to an address that is NOT in the domain of our email server. I've seen ...
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 ...