-
iMSG properly formatted .To .CC
Can you tell me if this code is good. This is form an .asp page vbscript. What is happening is the .CC is coming from a form, and that email never makes it to the CC recipient. The recipients in the TO field get the email ok, and in their email it does show the person in the .CC.
Is there a problem with this code, or could there be somehting wrong with the server configuration?
With iMsg
.MimeFormatted = False
.To = “webmaster@brps.com; calandrod@hinzclaim.com; charronc@hinzclaim.com;”
.CC = Request.Form(“txtReportCreatorEmail”)
.From = “webmaster@hinzclaim.com”
.Subject = “Form 45 Claim: “+ Request.Form(“txtEmployerName”) + ” ” + Request.Form(“txtEmployeesName”)
.HTMLBody = strHTML
.SendI do not know how to handcode in this language, but tried
With iMsg
.MimeFormatted = False
.To = “webmaster@brps.com; calandrod@hinzclaim.com; charronc@hinzclaim.com;” + Request.Form(“txtReportCreatorEmail”)
.From = “webmaster@hinzclaim.com”
.Subject = “Form 45 Claim: “+ Request.Form(“txtEmployerName”) + ” ” + Request.Form(“txtEmployeesName”)
.HTMLBody = strHTML
.SendThe CC got it, ClanadroD@hinzclaim did not.