Top "Smtpclient" questions

on .NET Framework , allows applications to send e-mail by using the Simple Mail Transfer Protocol (SMTP)

Unable to send mail over smtp server, as the 'operation timeout' error occurs

Unable to send mail over smtp server, as the 'operation timeout' error occurs. I have tried almost all the methods …

c# asp.net email smtpclient mailmessage
Why emails sent by smtpclient does not appear in sent items

I have implemented a server that sends emails via .Net SmtpClient. the mail sending code looks like that: private static …

c# .net email exchange-server smtpclient
Difference between smtpClient.send() and smtpClient.SendAsync()?

I am trying to send mail from localhost.. and on doing this i have got methods from different sites to …

smtpclient
What benefits can I take from SmtpClient.SendAsync's userToken object?

I was using SMTPClient.Send(mail) method to send emails, but then I saw, if the email id is not …

c# winforms sendmail smtpclient sendasync
How do I send an email message from my C# application?

This is the code I wrote: MailMessage mail = new MailMessage("[email protected]", "[email protected]"); mail.Subject = "This is …

c# email smtpclient mailmessage
How does my ASP.NET app get the SMTP settings automatically from web.config?

I noticed that we always just are like: SmtpClient mSmtpClient = new SmtpClient(); // Send the mail message mSmtpClient.Send(mMailMessage); And …

c# asp.net web-config smtpclient
C# - Can't send mail in WIndows Azure via Gmail SMTP

This is my Web.config: <system.net> <mailSettings> <smtp deliveryMethod="Network"> <network defaultCredentials="…

azure smtpclient
How do I send an email from a Windows Phone 8 application?

In a Windows Forms project, I used the SmtpClient and MailMessage class in order to send information by email. Is …

c# windows-phone-8 smtpclient mailmessage
SmtpClient.SendAsync - How to stop the application exiting before the callback is triggered?

I need to send emails asychronously through a console application. I need to do some DB updates on the callback …

c# smtpclient sendasync
System.Net.Mail and MailMessage not Sending Messages Immediately

When I sent a mail using System.Net.Mail, it seems that the messages do not send immediately. They take …

c# smtp smtpclient system.net.mail mailmessage