Sending Mail from inside Sitefinity 4.0
Assume I've set up the smtp settings in admin.
What is the simplest way of creating and sending an email?
--
Stuart
Hi Stuart ,
You can use EmailSender.Send method
EmailSender sen = EmailSender.Get();
sen.Send(new MailMessage(new MailAddress("mail"), new MailAddress("imail")));
Kind regards,
Ivan Dimitrov
the Telerik team
Ivan,
Thanks for that. I'll give it a shot.
--
Stuart