Can you please add support for aspSmartMail? Here is the code to make it work for you. case "aspmail" Set objNewMail = Server.CreateObject("aspSmartMail.SmartMail") objNewMail.Server = strMailServer objNewMail.SenderName = strFromName objNewMail.SenderAddress = strSender objNewMail.Recipients.Add strRecipients objNewMail.Subject = strSubject objNewMail.Body = strMessage on error resume next ' Ignore Errors objNewMail.SendMail