Jump to content

jeff kriz

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by jeff kriz

  1. code :Dim BodyMsg, Mail, BodyMsg2, Mail2'-------------SEND ORDER to customer ----'c_email = Record.fields("email1")Set Mail = CreateObject("CDO.Message")Mail.From = "Sales@GCsilver.com"Mail.To = c_email Mail.subject = "gcsilver.com Order # " & c_keyBodyMsg = "Thank You For Your Order." & Chr(10)BodyMsg = BodyMsg + "Print A Copy Of This For Your Records !" & Chr(10)Mail.TextBody = BodyMsgMail.SendSet Mail = nothing
  2. I have been sending emails using CreateObject("CDO.Message")by hard coding the email which receives it. I need to send it to a email which is a varible : using the line :Mail.To = c_emailI checked and the email varible is there (I checked by using response.write "email = " & c_email)any reason why this will not work. It has worked on other webhosting companies.Please help, thx Jeff
×
×
  • Create New...