Selamlar bir sorum olacaktı. Benim kendi sitem var ve sunucumda plesk panel kullanıyorum. ASP.NET C# ile sitemi tasarlıyorum fakat mail gönderme işleminde sıkıntı yaşıyorum.
Kodum bu ve bu Outlook'ta calisiyor yani Outlook'a mail gönderebiliyorum fakat Gmail'e göndermem lazımken Gmail'e mail göndermiyor emaile doğru şekilde gönderiyor.
Kod:
MailMessage ePosta = new MailMessage();
ePosta.From = new MailAddress("admin@beratozaydin.net", "Admin");
ePosta.Subject = "Konu";
try
{
ePosta.To.Add("kime");
ePosta.Body = TextBox1.Text;
SmtpClient smtp = new SmtpClient();
smtp.Credentials = new System.Net.NetworkCredential("admin@beratozaydin.net", "sifre");
smtp.Port = 587;
smtp.Host = "domainname";
smtp.EnableSsl = false;
smtp.Send(ePosta);
}
catch (Exception ex)
{
Response.Write(ex);
}
Kodum bu ve bu Outlook'ta calisiyor yani Outlook'a mail gönderebiliyorum fakat Gmail'e göndermem lazımken Gmail'e mail göndermiyor emaile doğru şekilde gönderiyor.
Son düzenleme: