<%@Language= VBScript%> <% emailURL = Request.Querystring("url") sendMail = Request.QueryString("sendMail") %> <% if sendMail = "Y" then emailURL = Request.Form("url") strAuthorEmail = Request.Form("from") strRecipientEmail = Request.Form("to") strSubject = Request.Form("sub") strBody = "Your Friend wants you to visit this page " & vbCrLf & vbCrLf & emailURL & vbCrLf &_ vbCrLf & "Message :" & Request.Form("msg") Set ObjMail = Server.CreateObject("CDONTS.NewMail") ObjMail.FROM = strAuthorEmail ObjMail.TO = strRecipientEmail ObjMail.Subject = strSubject ObjMail.Body = strBody ObjMail.Send Set ObjMail= Nothing End if %> - -:) Social Justice Education Institute at UMass Amherst (:-

To  : 
For multiple recipients,
the addresses should be separated by semi colon(;)
Subject :
Message  : 
From :

<%if sendMail="Y" then%> Your Mail has been Successfully send <%end if%>