<% set smtp = Server.CreateObject("Bamboo.SMTP") ' You only need to change the smtp.Rcpt ans smpt.from part to your email address smtp.Server = "mail.certifiedorganic.bc.ca" smtp.Rcpt = "commands@ListServe.com" smtp.From = Request.Form("Email") smtp.FromName = Request.Form("Email") smtp.Subject = "151441" smtp.Message = Request.Form("Format") & " " & Request.Form("Email") & " coabc" on error resume next smtp.Send if err then response.Write err.Description else %>You have been added to the list! Please go back to our homepage.<% end if set smtp = Nothing %>