Cобственно есть форма с данными для отправки писем, гмейл и яндекс не работает, прописывал разные smtp server-выдаёт "Сбой при отправке электронной почты" An unhandled exception of type 'System.Net.Mail.SmtpException' occurred in System.dll
Собственно, код
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Net.Mail;
namespace mailbrif
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
/// <summary>
/// Отправка сообщения
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button1_Click(object sender, EventArgs e)
{
//Создаём mail и туда берём всю информацию из textбоксов
MailMessage mail = new MailMessage(from.Text, to.Text, subject.Text, body.Text);
SmtpClient client = new SmtpClient(smtp.Text);
client.Port = 465;
client.Credentials = new System.Net.NetworkCredential(username.Text, password.Text);
client.EnableSsl = true;
client.Send(mail);
MessageBox.Show("Письмо отправлено!", "Успех!", MessageBoxButtons.OK);
}
}
}