Sending Asp.Net email through gmail
I am trying to send an email via GMail from ASP.Net using the code and config below. Unfortunatly it doesn't seem to be working and it also isn't throwing an error message. There is nothing in the server logs or the mail IIS mail folders, I even checked the trash of the from address to see if the mail ended up there. Any help would be really appreciated. C# Section public void SendFeedback() { string emailFrom = this.Email.Text; MailMessage message = new MailMessage(); // here is an important part: message.From = new MailAddress(emailFrom, "Mailer"); // it's superfluous part here since from