ObjMail.To
My form has 20 e-mail variable... and i would like to do something like that:
objMail.To = request.form("one", "two", "three")
and so on...to send to everyone that need to receive the mail. (there´s a checkbox in the form
My form has 20 e-mail variable... and i would like to do something like that:
objMail.To = request.form("one", "two", "three")
and so on...to send to everyone that need to receive the mail. (there´s a checkbox in the form
I am using the following code to attach an excel file to email.. but a funny thing happens, the excel file comes in with no data, and the uploaded file DOES have data... is there a filesize limit using objMail.AttachFile ??
Set objMail = CreateObject("CDONTS.NewMail")
objMail.From = "sales@???.com"
Objmail.BodyFormat = 0
ObjMail.MailFormat = 0
objMail.To = email
objMail.Subject = "File attached"
objMail.AttachFile Server.MapPath("/download/file.xls")
objMail.Body= mbody
objMail.Send
'response.write("Mail send")
Set objMail = Nothing ....
I have been reading quite a bit on how to do the objMail.AttachFile object, and no one can seem to get to it work properly. I have seen many variations such as:
objMail.AttachFile = (C:MyPathMyFile)
objMail.AttachFile = ("C:MyPathMyFile")
objMail.AttachFile = "C:MyPathMyFile"
objMail.AttachFile(C:MyPathMyFile)
objMail.AttachFile( Server.MapPath(<directory>) & arrFileList(intIndex)
I havent seen anyone report that they got it to work. I am using enctype="multipart/form-data" on my original web form, specifying the input type="file", declaring the attached file variable on my asp page, and doing request.form to gather the appropriate value, but nothing works.
Other forum users have said that it does not like virtual paths, but rather hard-coded paths, for some reason. Does anyone have some good code that works?
I'm running IIS 6.0 with Exchange 2003. One web site that is hosting is trying to use the new CDO method of sending e-mail.
SMTP Service is working fine for Exchange, but for web sites on the same box using code below generates:
CDO.Message.1 error '80070005'
Access is denied.
/test.asp, line 15
Site: http://www.ytr.com/test.asp
Code: ....