Так пробуй
using System;
using System.Net;
using System.Net.Mail;
class Program
{
static void Main()
{
Console.WriteLine("Введите свой Email (Обязательно Yandex): ");
var eMai = Console.ReadLine();
Console.WriteLine("Введите свой пароль: ");
var password = Console.ReadLine(); // Введите пароль для вашего email
SmtpClient Smtp = new SmtpClient("smtp.yandex.ru", 587)
{
Credentials = new NetworkCredential(eMai, password),
EnableSsl = true // Включаем SSL
};
MailMessage Message = new MailMessage
{
From = new MailAddress(eMai),
Subject = "Невидимый путешественник"
};
Message.To.Add(new MailAddress("krytoi***rper90@gmail.com")); //Три звезды это я свою почту закрыл.
Console.WriteLine("Введите свой Отзыв: ");
var otzyv = Console.ReadLine();
Message.Body = otzyv;
try
{
Smtp.Send(Message);
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Сообщение успешно отправлено!");
}
catch (SmtpException ex)
{
Console.ForegroundColor = ConsoleColor.DarkRed;
Console.WriteLine("\nОшибка: " + ex.Message);
}
finally
{
Console.Write("\n(Нажмите Enter для выхода)");
Console.Read();
}
}
}
помогите, я ввожу свою яндекс почту, и ошибка