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


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

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 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

Use CDOSYS To Send Email On Different Server

I've set up a website contact page which uses CDOSYS to send form details to an email address.

However, the domain is set up such as the client is using their own mail server, and using my server only to host the website.

Ordinarily I would set up hosting with email and change the nameservers of the domain to point to my server, but in this case the client is keeping the nameserver details the same, but just updating the A record to point to my server to display the website.

Trouble is, the CDOSYS email doesn't seem to work with this set-up. Do I need to hard code their mail server IP somewhere to get it to work?

View Replies View Related

Send Email Using ASP At Linux Server

I need to send a email to my clients from my website using the email object. I developed my site in ASP, and the server is linux, thats why i cann't use CDONTS object to send emails bcz server is not IIS....

View Replies View Related

Send HTML Email From External Server

how to send an HTMl email from an external server. I am trying to Send email using CDOSYS
this i what i have tried but cant get it to work.

View Replies View Related

Declare Smtp Server When Send Email

My question is do ASP need to declare smtp server when send email using CDonts function?

View Replies View Related

Email Send Failed: The Server Rejected One Or More Recipient Addresses

I am using ASP formmail from www.brainjar.com. I keep getting this error message:
Form could not be processed due to the following errors:

Email send failed: The server rejected one or more recipient addresses. The server response was: 550 endlessenergysystems.com.

The email address in the form is correct and does work. I have changed the settings to different email address and SMTP servers to try to figure out the issue. However I still get the same error. Here are the basic settings:

referers = Array("www.endlessenergysystems.com", "endlessenergysystems.com")
mailComp = "CDOSYS"
smtpServer = "smtp.readyhosting.com"
fromAddr = "info@endlessenergysystems.com"

View Replies View Related

Download From Diff Server

to download a file from same server we use

Response.AddHeader "content-disposition", "attachment; filename=text.mp3"

but what if i want to download a file from diff server. How can i do that? i have tried using virtual directory which is pointing to diff folder in different server but doesnot work. First is it possible use to download files from virtual directory pointing to diff server altogether?

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

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







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