Click here to Skip to main content
15,887,434 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to send a mail from local SMTP server. Pin
Kandepu Rajesh23-Jun-14 11:40
Kandepu Rajesh23-Jun-14 11:40 
GeneralRe: How to send a mail from local SMTP server. Pin
Richard MacCutchan25-Jun-14 15:16
mveRichard MacCutchan25-Jun-14 15:16 
GeneralRe: How to send a mail from local SMTP server. Pin
Kandepu Rajesh26-Jun-14 16:12
Kandepu Rajesh26-Jun-14 16:12 
GeneralRe: How to send a mail from local SMTP server. Pin
Richard MacCutchan27-Jun-14 5:56
mveRichard MacCutchan27-Jun-14 5:56 
GeneralRe: How to send a mail from local SMTP server. Pin
Kandepu Rajesh27-Jun-14 10:59
Kandepu Rajesh27-Jun-14 10:59 
GeneralRe: How to send a mail from local SMTP server. Pin
Richard MacCutchan27-Jun-14 13:24
mveRichard MacCutchan27-Jun-14 13:24 
AnswerRe: How to send a mail from local SMTP server. Pin
Richard Deeming19-Jun-14 1:24
mveRichard Deeming19-Jun-14 1:24 
GeneralRe: How to send a mail from local SMTP server. Pin
Kandepu Rajesh19-Jun-14 13:32
Kandepu Rajesh19-Jun-14 13:32 
I am getting "Failure sending mail" and it said Socketexception unable to connect.

I am using windows8 and visual studio 2010. And I have ran the web application from visual studio. Should i do anything else ..

Below is my code..
<pre lang="c#">

string from = "no-reply@retro.com";
string to = "rajeshvec2006@gmail.com";

System.Net.Mail.MailMessage mail = new System.Net.Mail.MailMessage();
mail.To.Add(to);
mail.From = new System.Net.Mail.MailAddress(from, "test", System.Text.Encoding.UTF8);
mail.Subject = "test";
mail.SubjectEncoding = System.Text.Encoding.UTF8;
mail.Body = "hai";
mail.BodyEncoding = System.Text.Encoding.UTF8;

SmtpClient client = new SmtpClient();

client.Host = "Localhost";

client.Send(mail);
</pre>


Could you please help me in this..
AnswerRe: How to send a mail from local SMTP server. Pin
Swinkaran19-Jun-14 15:16
professionalSwinkaran19-Jun-14 15:16 
QuestionSystem.InvalidOperationException TimeOut Expired. Pin
Member 1071694918-Jun-14 4:15
Member 1071694918-Jun-14 4:15 
AnswerRe: System.InvalidOperationException TimeOut Expired. Pin
hypermellow18-Jun-14 4:39
professionalhypermellow18-Jun-14 4:39 
GeneralRe: System.InvalidOperationException TimeOut Expired. Pin
Member 1071694918-Jun-14 4:49
Member 1071694918-Jun-14 4:49 
GeneralRe: System.InvalidOperationException TimeOut Expired. Pin
hypermellow18-Jun-14 5:09
professionalhypermellow18-Jun-14 5:09 
GeneralRe: System.InvalidOperationException TimeOut Expired. Pin
Member 1071694918-Jun-14 5:25
Member 1071694918-Jun-14 5:25 
GeneralRe: System.InvalidOperationException TimeOut Expired. Pin
Member 1071694918-Jun-14 5:27
Member 1071694918-Jun-14 5:27 
GeneralRe: System.InvalidOperationException TimeOut Expired. Pin
Member 1071694918-Jun-14 5:27
Member 1071694918-Jun-14 5:27 
AnswerRe: System.InvalidOperationException TimeOut Expired. Pin
thatraja19-Jun-14 0:11
professionalthatraja19-Jun-14 0:11 
GeneralRe: System.InvalidOperationException TimeOut Expired. Pin
Member 1071694919-Jun-14 1:33
Member 1071694919-Jun-14 1:33 
QuestionHow/where to set the Anti-MIME-Sniffing header X-Content-Type-Options to 'nosniff'. Pin
antony beula17-Jun-14 20:55
antony beula17-Jun-14 20:55 
AnswerRe: How/where to set the Anti-MIME-Sniffing header X-Content-Type-Options to 'nosniff'. Pin
Kornfeld Eliyahu Peter17-Jun-14 23:53
professionalKornfeld Eliyahu Peter17-Jun-14 23:53 
QuestionMVC 5 Scaffolded view problem Pin
AnCristina17-Jun-14 3:55
professionalAnCristina17-Jun-14 3:55 
AnswerRe: MVC 5 Scaffolded view problem Pin
AnCristina17-Jun-14 9:38
professionalAnCristina17-Jun-14 9:38 
AnswerRe: MVC 5 Scaffolded view problem Pin
Raviranjan_Kumar_Sinha17-Jun-14 20:53
Raviranjan_Kumar_Sinha17-Jun-14 20:53 
GeneralRe: MVC 5 Scaffolded view problem Pin
AnCristina19-Jun-14 2:40
professionalAnCristina19-Jun-14 2:40 
QuestionMVC 4 Radio Button List Pin
VishwaKL16-Jun-14 22:24
VishwaKL16-Jun-14 22:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.