![]() |
|
|
#1 (permalink) |
|
Registered User
Join Date: Feb 2006
Posts: 13
|
Sending Emails and attaching files (ASP)
I have a system that uploads an images from the users PC and then attaches it to an ASP-generated email, but it does not work.
I am using: Server.CreateObject("CDO.Message") method of sending an email. The code to attach the file is: objMail.AddAttachment = "d:\domains\mydomainname.co.uk\wwwroot\images\imag ename.gif" This is the error I get: Microsoft VBScript runtime error '800a01b6' Object doesn't support this property or method: 'AddAttachment' The file has already been uploaded to the server using an upload programme, but will not attach! Is this a permission issue? Last edited by orandaWeb; 07-03-2006 at 09:56 AM. |
|
|
|
|
|
#2 (permalink) |
|
Administrator
Join Date: May 2003
Posts: 1,299
|
I think you have equals sign in the wrong place. Try:
objMail.AddAttachment "d:\domains\mydomainname.co.uk\wwwroot\images\imag e name.gif"
__________________
Jacob Colton jacob@catalyst2.com Open a ticket | Knowledgebase | Rate catalyst2 | Review catalyst2 |
|
|
|
|
|
#4 (permalink) |
|
Registered User
Join Date: Apr 2006
Posts: 1
|
semding mail with attchment(ASP)
i have using mail attachment cdonts.newmail method:
but this error is display Microsoft VBScript runtime error '800a01b6' Object doesn't support this property or method: 'AddAttachment' i don't idea pls tell me the code is given set mail=CreateObject("CDONTS.NewMail") mail.From=email mail.To="chingoutham@yahoo.co.in" mail.Subject="Mail Attachment" mail.Body=body 'mail.attach="logout.htm" 'myMail.AddAttachment "D:\Gouthaman\Gouthaman\goutham\example site.txt" mail.AddAttachment"simple\openastextstream.txt" mail.Send set mail=Nothing response.Redirect("thanx.html") 'response.Write("Email send") 'On Error Goto 0 'Response.Write "Mail should have been sent" |
|
|
|
|
|
#5 (permalink) |
|
Administrator
Join Date: May 2003
Posts: 1,299
|
Is this running on our servers?
__________________
Jacob Colton jacob@catalyst2.com Open a ticket | Knowledgebase | Rate catalyst2 | Review catalyst2 |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|