procedure TWebForm1.Button1_Click(sender: System.Object; e: System.EventArgs);
var
objMail:MailMessage;
begin
objMail:=MailMessage.Create;
objMail.From :='Kimden';
objMail.&To :='Kime';
objMail.Subject :='Konnu';
objMail.Body:='Mesaj';
objMail.BodyFormat := MailFormat.Text; // MailFormat.Html de olabilir
SmtpMail.SmtpServer := 'localhost';
SmtpMail.Send(objMail); //Gönder
end;
pc'nizde smtp server kurulu olması gerekir
aşağıdaki unit ismini eklemeyi unutmayın
System.Web.Mail