Error 1 The type or namespace name 'Mail' does not exist in the namespace 'System.Web' (are you missing an assembly reference?) C:\Users\Michal\Desktop\PV\C#\ConsoleApplication9\ConsoleApplication9\Program.cs 2 18 ConsoleApplication9
Error 2 Expected class, delegate, enum, interface, or struct C:\Users\Michal\Desktop\PV\C#\ConsoleApplication9\ConsoleApplication9\Program.cs 3 15 ConsoleApplication9
Error 3 Expected class, delegate, enum, interface, or struct C:\Users\Michal\Desktop\PV\C#\ConsoleApplication9\ConsoleApplication9\Program.cs 7 22 ConsoleApplication9
Error 4 Type or namespace definition, or end-of-file expected C:\Users\Michal\Desktop\PV\C#\ConsoleApplication9\ConsoleApplication9\Program.cs 14 1 ConsoleApplication9
nebo jsem našel toto
using System.Web.Mail;
public static void sendEmail(string mailTo, string mailFrom, string
mailSubject,
string mailBody)
{
MailMessage mm = new MailMessage();
mm.From = mailFrom;
mm.To = mailTo;
mm.Subject = mailSubject;
mm.Body = mailBody;
SmtpMail.SmtpServer = "your smtp server";
SmtpMail.Send(mm);
}
ale to mi taktéž nešlo

Poradí někdo, jak jednoduše ten mejl poslat ?