Sending PDF Attachments With JMail?
for some reason i cannot send PDF's as an attachment, every other file type i try sends fine, but not pdf's..
could anyone please tell me why this is, and if there is a work around for it?
I'm running JMail 4.7
View Replies
ADVERTISEMENT
I’m creating an application that uses JMail to send email. And it works great!! as longs as I don’t try to add an attachment. However, I really need to have my users be able to add attachments; otherwise the purpose of this application is null and void.
I know that the file that is attached needs to be uploaded to a file share folder via FTP then encoded before being sent. My problem is that I don’t know how to code it. This is the JMail code that I am working with: I need some help in getting the code other than (Jmail.addAttachment) for adding the attachment......
View Replies
View Related
Just want to confirm if you can add multiple attachments like this? Code:
Mail.Host="test@yahoo.com
Mail.FromName="test@yahoo.co.uk"
Mail.AddAttachment "C: est.doc"
Mail.AddAttachment "C: est2.doc"
View Replies
View Related
I'm trying to send an email to customers with their order information. I thought I had it working because I had been using my email. But when I changed and use an email outside of "______@faceproject.org" I get an error that says it cannot be found.
Here is my code:....
View Replies
View Related
I have problem sending attachment (word document) using JMail. Here is my asp file: Code:
View Replies
View Related
Is there a way to send a newsletter to 14.000 addresses using an web-sending email aplication like Jmail, ASPemail or others? Ill tell you the whole problem, my friends. Im responsable of sending the newsletter, and my life is travelling from one city to another.
I dont have any notebook, so it would be very helpful if I could make (or use another's) aplication in where, using a user & pass, I could enter to a site and run "send" and then quit.
View Replies
View Related
I have a SelectBoxes.asp page that is working with multiple selection
dropdown boxes to extract data and total the selection prices.
Tom & Bob were kind enough to give me a big help getting this page
working and it's working just fine, no problems with this page.
However I then would like this data e-mailed using jmail (my host insists
on this method) and that is the function of the sendEMail2.asp page.
This is failing and only giving me a HTTP 500 - Internal server error and
I'm at a loss as to what's wrong. Code:
View Replies
View Related
In dreamweaver using javascript I've developed a page that sends the form's contents via Jmail to the user. It works fine until i try to send double byte characters(i.e. japanese). It sends the email but once i open it up in a mail client the text is illegible. My mail server and mail client never has problems sending and recieving double byte characters, the only time this problem pops up is when i send an email from an ASP page via Jmail. I've tried sending the email in plain text and html but it hasn't made any difference. Here is the code I've been using: .....
View Replies
View Related
I use jmail to send email. Version 3.7. I want to send hyperlink in the mail body with sessionid variable. But I dont know how to concatenate it.
Here is the example which dont work.....
View Replies
View Related
I have that form that send email to subscribers. Even if the specified option is set to "TEXT" I still see the HTML coding in the message... Tho when I look the source of the message I see "X-Mailer: JMail 4.5 by Dimac
Content-type: text/plain; charset=iso-8859-1: and all the <br> code are that way : <br=3E
my jmail code:
View Replies
View Related
I am testing JMail through ASP on my local server so I can just swap out serverAddress when it goes live to make a simple switch with our live server.
However I KEEP getting :
The message was undeliverable. All servers failed to recieve the message
jmail.dll was installed into windows/system32 and regsvr32 jmail.dll was successful.
Here's the code; I specified :
localhost:25
mail.locahost:25
mail.localhost.com:25
127.0.0.1:25
all with and without the :25 on the end. No go. Same error. Here's my code :
View Replies
View Related
I am using an upload page that I found from another site to upload a scanned copy of a document. What I want is to be able to associate each document to a field in the database.For example - I create a new record in the DB. The last field will allow me to upload an attachment to the server. Once that file is uploaded - it will associate that file to the database record so that when I use my view page, I can click the attachment and open it.Can anybody assist me on this? I am just not sure how to reference the attachment in the database or how to automate it to maybe an autoincrement field that will change the file name as well.
View Replies
View Related
is it really difficult to create a code that allows people who visit a certain paige to add an attachment to it?
View Replies
View Related
a FREE mail script which allows multiple attachments?
View Replies
View Related
I need some guidance in regards to asp forms w/attachments. Im trying to make a form where you can upload a CV and this CV as well with the form gets sent to an Admin.
I'm using CDOSYS, and the code from microsoft etc is working to a point, the form is sending fine, but email attachment is giving me some random file name with a (.dat) extension.
View Replies
View Related
I've read about how to use CDO/CDONTs to manipulate mail sent to a server computer, and how to configure DNS so that the SMTP server will get the mail that you want it to.
Using CDO/CDONTS, can you programmatically access attachments to the mails that are sent to and stored on the server? What is the syntax? Is there an object reference or somesuch that I can look at that will point the way to the answer?
View Replies
View Related
I am using cdonts to send mail messages with an attachment. The problem I am having is the messages are going through OK but the attachments are not there. Any ideas? I have tried my code elsewhere and it looks.
View Replies
View Related
I'm using this code to send a e-mail with attachment:
Dim oCdoMail
Set oCdoMail = Server.CreateObject("CDO.Message")
oCdoMail.From = strFromEmail
oCdoMail.To = strToEmail
oCdoMail.Subject = "Job Information"
oCdoMail.TextBody = "This is the email notification"
oCdoMail.AddAttachment strFileName
oCdoMail.Configuration.Fields.Item=2
oCdoMail.Configuration.Fields.Item=<My mail server IP>
oCdoMail.Send
This code scuccessfully send mail with attchment on my local. But when we uplaod this code to the web server this is forceing error. If i mark comment the folowing code
"oCdoMail.AddAttachment strFileName" this will work fine on the server, but i need to send e-mail with attachments. how it could be possible ?
View Replies
View Related
Is it possible using mailto: to create an email with everything except an attachment
and then when a user clicks on send intercept that form and recreate the email on the server and add a file to it?
View Replies
View Related
I try to grab the checked files from HTML page and then send those PDF
files as attachments. It can just send email, there are no PDF files
attached. Can anybody point out my error?
My idea is:
When people check the check boxes in HTML page for the PDF files, it
will transfer the files' name to ASP page. Then, it will attach it in
the email. Code:
View Replies
View Related
I have been using the MS SOAP 3.0 toolkit with DIME for pulling data and files from our content server. Now I want to push files into it using SOAP with DIME attachments.
I am able to upload a file to the server and pass the file/path reference into the MSSOAP.FileAttachment30 object using this code:
View Replies
View Related
I was wondering if somebody could point me in the right direction on this subject.
Basically, I have a mailbox which recieves emails with an XML attachment. What I would like to do is read the XML attachment on each new email received and then insert it into an SQL database. As it stands I am unsure of which path to take and my initial google searches have come up with nothing so far.
Does anyone have any ideas as to how to approach this problem?
View Replies
View Related
i'm still kind of new to ASP all together but i need to make a web form which will email the information to a specified email address. i've gotten the form to work flawlessly. however, i would like to add an attachment field so the user can upload attachments for us. how do you code attachments? our server is currently using CDONTS.
View Replies
View Related
Right what I am after is a neat bit of code that wraps up sending a cdo email with an attachment from the clients machine and not the server, so need a built in browser and file upload send and delete facility in the creating and send email code?
View Replies
View Related
What is the easiest, quickest and cheapest way to send an email from a form with attachments in ASP?
View Replies
View Related
I am having trouble sending multiple attachments as selected from a select list with multiple="multiple". It will send one just fine and the array is including the correct absolute path but I get a "syntax error" message whenever I try to do this.
Here is my code:
If IsArray(AttachArr) Then
For j = 0 to UBound(AttachArr)
.AddAttachment AttachArr(j)
Next
End If
I am guessing it has something to do with repeating the ".AddAttachment" line. I would appreciate any help I can get!
View Replies
View Related
I have a web form that has a textarea, a input type="file" and a submit Upon submission, it is calling an asp script.
I need my asp to send an email (this is a constant, this email will remain the same).
The email's body will contain the content of the textarea, and the file that was uploaded by the input file should be attached to the email.
Now, does anyone know how to achieve this? I am using CDO in my asp and I can retreive the textarea contentg, but i can never send the file attachment.
View Replies
View Related
On our previous production server, we used CDONTS to attach jpeg image
to the mail. On our new server (both are Win2000) attachments are
truncated to ~108B (that's what outlook shows), or 0 bytes when I try
to save to disk from Outlook.
I'm sure that files to be attached are
accesible, because security is set to allow for Everyone. I suspect
something with SMTP config, but what? Because I couldn't find what's
wrong I moved to CDO, but the result is still the same in the end. Any
ideas?
View Replies
View Related
We have stored user registration information in an Access database, and we wish to develop an email with attachments like words document and pictures in jpeg/gif format and import the email address from the mailing list in the Access database and to send this to the user.
View Replies
View Related
I have found a FormMail type script in ASP that will send 1 attachment but getting any more seems to be a problem.. Can anyone suggest a script paid or free download?
Also the webserver and exchange servers sit on different boxes will this cause any problems?
View Replies
View Related
i've finally integrated a way to send multiple attachemts from within an asp page and it works!!!!!
View Replies
View Related
I have a cdo script to send an email from a web page hosted externally to my company. I want users to be able to attach multiple documents from their local machines.
How do I do this - do I need to upload them to the server first or does cdo do this automatically?
I tryed this: MyMail.AddAttachment "F:/images/test.gif" but get the error: 'The system cannot find the path specified.'
View Replies
View Related