Send CDO Email With Attachment Uploaded With Aspupload


Im trying to get a CDO email sent from a form submittal with an attachment which has been just uploaded with aspupload.

Everything goes ok, the file uploads when the form is submitted and I have verified this in the upload folder. It all goes pear shaped when I try to code in the CDO object. I get this error:

Error Type:
Microsoft VBScript runtime (0x800A01A8)
Object required: ''
/profilescreative/jobapplication2.asp, line 63

and in my code its at this point:.....

View Replies


ADVERTISEMENT

How Do I Use CDONTS.new To Send An Email With Attachment?

Can someone give me some sample code to use CDONTS.new to send email with an attachment?

I've got sample code from the following website;

http://msdn.microsoft.com/library/e...sp?frame=true

But, I'm having trouble GETTING the relevant field from my HTML form! I can't seem to be able to get the field property. It just comes up as a blank.

View Replies View Related

Code To Send Email With Attachment?

Can any one give some ASP code to send an email with attachment.

View Replies View Related

How To Send CDONTS Or CDOSYS Email With Specified Attachment?

I am trying to get a asp-mailer setup that will send a specified attachment.
I have tried both CDONTS and CDOSYS methods ... both are giving me headaches.

And the best part is how incredibly helpful the error is: (Sarcasm Intended)

Error Type:
(0x80004005)
Unspecified error <-- They should change that error to ... "Good Luck!"
/knowledgetree/emailer-drivers.asp, line 90
I hilighted the above line in the code as well.

Here is the code I am working with: Code:

View Replies View Related

Problem When Send Email With Attachment From Diff. Server.

I want to send email with attachment. I have no problem if the file is located on the same server but i got error when attach file from different server. This is the code,

set mail=server.CreateObject("persits.mailsender")
mail.host="smtp.mydomain.com"
.....
'mail.addattachment "c:attach est.txt" ' no problem with this
mail.addattachment "websvrattach est.txt"
.......
mail.send

I got this error,
"Persits.MailSender.4 error '800a0007'
Logon failure: unknown user name or bad password."

when i changed the servername to static ip address also got the same error.
any idea? fyi, this user has an administrator rights to the server.

View Replies View Related

Searching Uploaded Attachment.

Can somebody help me in implementing Searches on the uploaded attachments through ASP..?

To explain it a bit more, I have a web app through which the users post knowledgebase articles, these articles are in the form of .pdf or .doc... Now to visit these uploads, I am in need of a facility which scans through the contents of the uploaded attachments, the search criteria being the user given keywords...

View Replies View Related

How To Send The Uploaded File's Name???

I am having a file (default.asp) on which i am taking many details from
a user before mailing it to someone. I have also provided the user with
a facility of uploading files on a server.

I am uploading files from a
page upload.asp which has a link on default.asp. Now my problem is
that, how can i send the file name that is uploaded, in a mail along
with other details that the user enters on default.asp?? In the asp in
which i am sending the email, i am collecting all the details from
default.asp.

View Replies View Related

Can Not Send Attachment With CDONTS

Set mail = Server.CreateObject("CDONTS.Newmail")
mail.From = janki@yahoo.co.in
mail.To = sender@yahoo.com
mail.Subject = "Subject"
mail.Body = "newsletter"
mail.AttachFile = "C: est.zip"
mail.BodyFormat = 0 'CdoBodyFormatHTML
mail.Send
Set mail = Nothing
this code is not working please help.....

View Replies View Related

Send Db Records As Attachment

how can i send reports of different client as email attachment.i've database in which the records of every client. the thing i want to do is the records of client send as email attacment in excel format or any other format.am using Access Database with Classsic ASP.

View Replies View Related

How To Send E-mail Met Attachment Image

How I send e-mail with attachement image. I send e-mail with cdo.message. but I have deffiecult to send attachment image.

Here is my code: ....

View Replies View Related

How To Send Attachment Using ASP Mail - CDO Object

<FORM id=FORM1 name=FORM1 action=Upload.asp method=post
encType=multipart/form-data>
File 1:<INPUT type=file name=FILE1>
Description 1:<INPUT name=DESCR1><BR>
<INPUT type=submit value=Upload!>
</FORM>

How to attach the file selected in Input type=file .

how to attach that file & send mail using CDO in ASP..

View Replies View Related

How I Send E-mail With Attachment Image

How I send e-mail with attachment image. I have made 2 file test.asp and test1.asp
test.asp called test1.asp en attachement 2 images. It does not work because the attachment image.

How I can solve this problem. herewith my code (test.asp and test1.asp) ....

View Replies View Related

Email & ASPUpload

I'm wondering if someone can have a quick look at my code and see if
there's anything that I've done wrong.

<%
DIM File, Upload, Count, Ext
DIM Mail, strMsgHeader
Set Upload = Server.CreateObject("Persits.Upload.1")
Count = Upload.SaveVirtual("/html/uploads/")


IF NOT Count=0 THEN
FOR EACH File IN Upload.Files
Ext = UCase(Right(File.Path, 3))
IF Ext <> "TXT" AND Ext <> "DOC" THEN
Response.Write Upload.Form("FirstName") & ",<br><br>"
Response.Write "Sorry, your resume " & File.Path & " is not in a .DOC
or .TXT format and has not been delivered through our system. Please
save your resume in one of these formats and resubmit it."
File.Delete
ELSE

Set File = Upload.Files("fResume")

Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "63.99.213.33"
Mail.From = Upload.Form("Email")
Mail.AddAddress "changed@emailaddress.com"
Mail.Subject = "Resume"
strMsgHeader = "This email was delivered from your website." & vbCrLf
& vbCrLf
Mail.Body = strMsgHeader & "Email: " & Upload.Form("Email") & vbCrLf &
"First Name: " & Upload.Form("FirstName") & vbCrLf & "Last Name: " &
Upload.Form("LastName") & vbCrLf & "Position: " &
Upload.Form("Position") & vbCrLf & vbCrLf & "Comments: " &
Upload.Form("Comments")

IF Count > 0 THEN
Mail.AddAttachment Upload.Files(1).Path

On Error Resume Next
Mail.Send
IF Err <> 0 THEN
Response.Write "There was an error sending your message. Please visit
our Contact Us page and send a message to our Webmaster to report this
error: <B>" & Err.Description & "</B>"
ELSE
Response.Write Upload.Form("FirstName") & ","
Response.Write "<p>Thank you for contacting our recruiter. Your resume
has been received and will be reviewed shortly. If we have a position
is available that matches your skills, we will contact you to schedule
an interview. We keep all resumes on file for a period of 6 months,
please feel free to resubmit your resume after this time for future
consideration.</p>"
File.Delete
END IF
END IF
END IF

NEXT
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>

<P>
<%
' personalize form
' displays name before your message.
strName = Request.Form("FirstName")
Response.Write strFirstName
%>,</P>

<P>Thank you for emailing us your resume.</P>

</body>
</html>

View Replies View Related

ASPUpload - Sending Email And More

I have successfully setup a form that uploads a file using the ASPUpload script and it shows a progress bar, indicating the status of the upload.

Their script manual is at:

http://www.aspupload.com/manual.html

My asp skills are very poor(!) but...

...I would like to improve this script so that:

1. It will create a unique subfolder for the uploaded file. The name will be given (I will have a php script that auto generates this).

2. It will store the uploaded file in this unique subfolder.

3. It will send an email showing the content of the form text fields.

4. Certain form text fields will be shown on the last page.

Can anyone help?

View Replies View Related

Attachment In Email Using CDO

I am sending email using CDO. I want to send attachment through email.For that I have to send my file to webserver first then have to write path of file in CDO code.what is the best method developer's using for the same?Would you please send some component so that from local m/c I can upload desire file to webserver and consequently can attach that file into email.

View Replies View Related

Attachment In Email

I am sending email using CDO. I want to send attachment through email.For that I have to send my file to webserver first then have to write path of file in CDO code.what is the best method developer's using for the same?Would you please send some component so that from local m/c I can upload desire file to webserver and consequently can attach that file into email.

View Replies View Related

Email Attachment

I want the users to be able to send an email with an attachment from my web page. The problem is that the file ".DOC" resides on the client machine and not the server. It would be ideal if the user could browse for the file.

Can someone tell me if this is possible and how? Do I have to first upload the document before adding it to the email as an attachment.

View Replies View Related

Asp Email Attachment

Anybody can teach me beginning how to write a asp with attachment file?

Example I have a form as below:-

Name :
Address :
Tel :
Email :
Attachment photo :

I would like received mail can get all this info.

View Replies View Related

Email Attachment Pbm

i have pbm, all the values from first form is passed to the asp form including the path of the file attachment, through local host it is well running if i upload files in remote server and process then error is generated could anybody help this out Code:
...
stratt = Request.QueryString("f_path")

With objCDOMail
Set .Configuration = objConfig
.From = strFromEmailAddress
.To = strToEmailAddress
'.Cc = strCcEmailAddress
'.Bcc = strBccEmailAddress
.Subject = "Enquiry sent from enquiry form on website"
'.HTMLBody = strHTML
.TextBody = strBody
.AddAttachment stratt (path)
.Send
End With

View Replies View Related

Email Attachment Failure

error '80004005'
Unspecified error

when sending an attachment, how do i debug this?

i found out that by default, ASP apps can only access files that are on the computerthat the server runs on. how can i change this so the IIS will take the files off the client's computer?

View Replies View Related

File Attachment Email By ASP

I want to write ASP code to send email with file attachment

by using CDONTS . I searched from internet but i'm still confused

about the mechanism and code they writing in ASP.NET

Anyone doing this before can give me a hand such as instruction or sample code for example.

View Replies View Related

CDO Email Attachment In JScript

I have a CDO mail script in JScript that works fine if I send the message without an attachment. However, I haven't been able to figure out how to attach a file without getting an error. Does anyone know how to attach a file to a CDO message in JScript?


<%@language="JScript" %>

<%
var cdoConfig = Server.CreateObject("CDO.Configuration");
cdoConfig.Fields("cdoSMTPServerName") = "12.34.56.78";

var cdoMessage = Server.CreateObject("CDO.Message");
cdoMessage.Configuration = cdoConfig;

var cdoBodyPart = cdoMessage.BodyPart;
cdoBodyPart.ContentTransferEncoding = "8bit";

cdoMessage.To = "name@company.com";
cdoMessage.From = "someone@mail.org";
cdoMessage.Subject = "CDO Test in JScript";
cdoMessage.TextBody = "This is a test email sent using JScript.";
cdoMessage.send();
%>

I've tried adding each of the following lines, but none of them works.

cdoMessage.AddAttachment "c:filesdocument.txt";
cdoMessage.AddAttachment( "c:filesdocument.txt" );
cdoMessage.Attachments.Add "c:filesdocument.txt";
cdoMessage.Attachments.Add( "c:filesdocument.txt" );
cdoMessage.AttachFile "c:filesdocument.txt";
cdoMessage.AttachFile( "c:filesdocument.txt" );

View Replies View Related

Adding An Attachment To Email

I have a form that i have created and i need it to that the user can attach a file then get the form to send the file. Please have a look at my current code:

View Replies View Related

Form Email Attachment

I have a asp form which has a file field and a Send email button. I want user to use the file field to select an attachment path to be send out as email. How can I do that?

View Replies View Related

Email Attachment Using CDONTS.

how to restrict email attachment file type as well as file size? If anybody has idea about it.?

View Replies View Related

Adding An Attachment To Email

I have a form that i have created and i need it to that the user can attach a file then get the form to send the file. Code:

View Replies View Related

Email Form With Attachment.

i have a form. data is written to mssql and confirmation is sent to a user and receiving partly. also form need has a field which selects a file and sends it with confirmation to email. The problem is this: i can send email and write to DB but not attachment
or i can send attachment but does not write to db.

View Replies View Related

Email Body Sending As Attachment

I'm trying to send out emails but the body of it keeps sending as an attachment so with some email services, such as yahoo, puts the email into the bulk mail. I was wondering if there was a way to stop it from sending the body as an attachment.

View Replies View Related

Sending Email Attachment From An Asp Form

I am trying to send an email attachment using an asp VBscript from a .asp form. The script appears to be working fine however no email comes through to the recipient. I have tried the script without the attachment and it works fine. Code:

View Replies View Related

Sending Launching Email With HTML Attachment

Can anyone get me started or point me to a resource for some help?

I have an ASP page that displays various boxes, tables, and information. I want to be able to click an "Email" button and have the asp page save the page as an attachment (html?) and then launch Outlook and automatically attach the page to it and enter the email address of the person I want to send it to.

I can't just send a link because the page is generated on an Intranet and I need to send it to people outside the network. So, I need to save a print screen of the page and then have Outlook grab that and the recipient's email address and put those into Outlook so the sender can review and send out.

View Replies View Related

Create Email Form With Attachment With Cc And Bcc Address?

I want to create form in which user specify his details. But that mail should be take cc address from database and also that form have one attachment field.

Mail body must be in html format. Attachment and "from" his email field compulsory....

View Replies View Related

Need Help Sending CDO Email With Dynamic HTML Attachment

I'm using CDO SYS to send email messages. I can attach a file just fine.
However, I need to attach an HTML page that's generated on the fly by my
ASP code. The attachment source code gets assembled into a VB string. How
do I attach this? I think there was an easy way in CDONTS but that's no
longer an option.

View Replies View Related

Email The Same Html Page As Attachment After Submission

I have designed a form after submission of which an email is sent to a perticular e-mail id. Up to this it works fine but I need to send a complete filled html page in attachment too.

Can this be possible. If any way to do this please let me know. As mail sender am using CDO.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved