Search Results

Search found 1 results on 1 pages for 'leventkalayz'.

Page 1/1 | 1 

  • c# how to add smtp hotmail account to send mail

    - by leventkalayz
    I wrote some codes so as to send e mail but I can only send mail from gmail account to gmail account also, I want to use hotmail accounts how can i do it? thanks It is SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com"); mail.From = new MailAddress("[email protected]"); mail.To.Add("[email protected]"); mail.Subject = "Test Mail - 1"; mail.IsBodyHtml = true; string htmlBody; htmlBody = "Write some HTML code here"; mail.Body = htmlBody; SmtpServer.Port = 587; SmtpServer.Credentials = new System.Net.NetworkCredential("[email protected]", "mypassword"); SmtpServer.EnableSsl = true; SmtpServer.Send(mail);

    Read the article

1