<%
Set mailer = Server.CreateObject("SoftArtisans.SMTPMail")
...
'--- Set the UserName and Password with which mail server will authenticate
mailer.UserName ="Username"
mailer.Password ="Password"
'--- If mail server authenticates, send e-mail
mailer.SendMail
...
%>