My mail server requires a valid username/password to send mail to an outside source. In classic asp using jmail or aspmail it was no problem since they have user/pwd properties. However, I can't find any such properties in asp.net's MailMessage or SmtpMail class's. Does anyone know how to pass these properties in?Try this<BR><BR> Public Sub SendEmail(ByVal email As String, ByVal subject As String, ByVal message As String)<BR> Dim mail As New System.Web.Mail.MailMessage()<BR> mail.From = "[email protected]"<BR> mail.To = email<BR> mail.Subject = subject<BR> mail.Body = message<BR> mail.BodyFormat = System.Web.Mail.MailFormat.Html<BR> System.Web.Mail.SmtpMail.Send(mail)<BR> End SubIt might work, but my address is not the administrator's address. Pluess I will need to put a different from address since it would be for another business.