hi
you can send email using these code but it is in c# you can change it
to
VB.NET.
you can send a mail using your asp.net page for confirmation and using hosted site smtp email engine .
using tis code you can send email using asp.net
include this directive to your page.
<%@Import Namespace="System.Web.Mail" %>
MailMessage msgMailRespond = new MailMessage();
MailMessage msgMail = new MailMessage();
UTF8Encoding utf8 = new UTF8Encoding();
msgMail.BodyEncoding= utf8 ;
msgMail.To ="
[email protected]";
msgMail.From =from.Text;
msgMail.Subject =strSubject.Text;
msgMail.BodyFormat = MailFormat.Html;
string strBody="<div style=\"font-family:tahoma,zar,arial,yagut ,font-size:14\">"+strMessageBody.Text;
strBody+="<br></div>";
msgMail.Body = strBody;
SmtpMail.Send(msgMail);
YoOrD.
Beauty Is not on the face
Beauty is on the heart
--<<Ghibran Khalil>>--