Programatic Feedback From An Smtp Server

I have an application which sends emails. Currently we use the mailenable web server.
If an email is not sent successfully then we want to update the email address in our database as unreacheable automatically.

In other words we want a mail server that when it gives up sending an email will do an http post, or will somehow communicate with our software so that we can update our database. if ther is a mailserver which will do this?

View Replies


ADVERTISEMENT

Iis 5.0 - Smtp Virtual Server - Smtp Problem


I am working on a listing for sending emails via CDONTS component...

I have installed SMTP service on my machine and tried running the sample code....No errors appear, yet no mail is sent in the long run...All necessary services are up and running (IIS Admin, WWW and SMTP).

Another thing is that i have checked to see if Default SMTP Virtual Server is listed under the Internet Services Manager pane tree, but nothing seems to be there except Default FTP Site and Default Web Site....

The question might seem silly but...do i have to have a Mail Server installed.....?

How can i determine the cause that prevents the mail from being sent...Logs don't help much....Is there a way to detect the actual presence of the component...?

View Replies View Related

Using External SMTP Server Vs. IIS SMTP Server

Our network administrator does not want to install the IIS SMTP server on
our intranet. He wants me to use our existing SMTP server
"mail.smpi.siemens.ca". Can I do this with IIS?? Is this a setting in an
ASP if I'm not running the IIS SMTP server?

We are running on Windows 2000 SP4 with IIS5.

View Replies View Related

SMTP Server

Another newbie's questions

How do I find my STMP server ( I need it to use AspSmartMail)?

My web site is being hosted on a .com , do I have to ask them? Or can I find it by myself.

View Replies View Related

Specify Smtp Server

anyone know if this is possible? I need to specify a different one than the default.

View Replies View Related

ASP Emails Without SMTP Server?

Anyone has ideas how to send an email through ASP without having an SMTP server? I'm currently building a website which needs emails to be sent when users submits a form, however the web space provider doesn't not have an SMTP server. I'm now using CDO on my local testing server (with SMTP installed) and it works, but I just don't know how to get it working after uploading it because the remote server hasn't got SMTP on it.

View Replies View Related

CDO - And Remote SMTP Server

1. I wonder, why do I need to add the following lines when sending forms through mail, using CDO component?

2. If I remove these lines and the form is still submitted as it should, and I get the mail as a result as it should, does it mean I do not need these lines?

3. In other words - How do I know if an SMTP service is installed on the local server, and not in another network (besides asking the admin)? Code:

View Replies View Related

Exchange Server For SMTP

I have no knowledge of Exchange server, and have always used CDO to send emails from ASP in the past. the server in question doesn't have SMTP installed alongside IIS, it has Exchange installed which apparantly does have SMTP capabilities but not like the default ones normally accessbile via IIS.

Has anyone ever used this approach to sending emails? I'm hoping that I dont need a component or anything else, just some changes to my existing email code.

View Replies View Related

Using CDONTS To Logon The IIS SMTP Server

Is it possible to logon to the SMTP server that comes with IIS from a machine other than the actual server. Ideally I would want to put some VB Script in an SQL Server Job Schedule or an ASP page that uses CDONTS and use it to pull the emails into the database. The SQL Server is on another machine on the network. Is this viable.

View Replies View Related

Using SMTP/server-side Email

Is it possible to set up server-side mail services such that when someone
e-mails to a certain address, the contents attached to that mail are
processed and the processed content is returned to the user, again, as an
attachment?I installed a server-side component for managing graphics. "Wouldn't it be
nice," thought I, "if untutored staff could email graphics to a certain
e-mail address to have them resized and returned to them.")
I understand how to handle the graphics processing and the sending. I don't
understand how to set things up so that e-mailing to a certain address will
trigger the start of an application. Ideally you could do this all within
ASP. Is this possible?

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

Web Forms And SMTP On Server 2003 (CDONTS)

Not sure which forum this belongs in, so here it is here as well as in the IIS forum

I am migrating a Windows 2000 Server Web Server with an older version of IIS to a new Windows 2003 Server with IIS 6.0.....Everything is working properly accept web forms which simply send an email via a SMTP service installed in IIS:

this is the code: ....

View Replies View Related

Adding Smtp Server Settings To CDOSYS

i am having trouble getting CDOSYS to work, i have just changed from CDONTS (which was working fine), because i want to be able to email a webpage as my body Code:

View Replies View Related

Feedback.asp To Feedback.php

I am tired of paying high hosting cost due to only two asp file on the whole website. I used these asp files to send mail from form.

Here is the code. Is there a way I can turn the functionality part of this code into php or some cgi format. Code:

View Replies View Related

Feedback Form

I want to do the following:

1. Use the attached feedback form and write the values to a new record in my SQL database and 1(b) send me an e-mail

2. Forward a thankyou receipt back to the end-user with a new job number, Code:

View Replies View Related

Email Feedback Form

I'm trying to create a feedback form, but keep getting this message: "The requested method POST is not allowed for the URL". What exactly does this mean - do I need to turn POST on, and how do I go about this?

View Replies View Related

Send Feedback To The User

if i m the server, i had this feedback page whereby i need the user to type in the feedback in a textbox and then send it to mi. he must enter his email in a textfield and click on a button. issit possible to do that? without having to use outlook express to pop out??

View Replies View Related

Feedback When A Persson Apply For Job

how can i send a e-mail to the person who has fillied my apply.html form.i have a email (textbox field)i mean automatic email.

View Replies View Related

Feedback After Completed Form

Im using a form to collect user details, but its not going to a databse just to the clients email. Such as below:

I was wondering how to show feedback similar to 'Thank you your form has been sent', when the form has been successfully sent. Code:

View Replies View Related

CDONTS - Administration Of Feedback From SQL Database

I have a feedback form on my site that processes the feedback into a SQL database and also sends an email to my inbox.

What I need is to create an administration asp page that retrieves the records from the database and displays them on the page and then have a mechanism on the page for deleting the records and refreshing the page.

Has anyone seen any examples posted on the forum or may be able to point me towards some useful links.

View Replies View Related

Submit Only Part Of A Feedback Form

On one of the sections I have a text field called IMO where the user may input text. Beside the IMO text field I have a button that will submit the value found in the IMO field if any to another asp page namely get_vessel_fields.asp.

I don't get any errors but nothing happens when I click the button.

<FORM><input type="text" name="IMO"> 'THis is the IMO field in question there are other fields in this form

Dim strIMO
strIMO = IMO

<FORM><INPUT TYPE='button' VALUE='Pop' onClick='get_vessel_fields.asp?strIMO;return true;'></FORM>
'get_vessel_fields.asp will then process the value submitted

View Replies View Related

Creating Feedback Email From Form Enquiry

I built a form to collect users details, and noticed that a lot of sites these days have feedback emails that return a recieved email confirmation back to the customer.
Can anybody point me to, or allow me the code so that I can try it myself.

View Replies View Related

Website "Email Feedback Form" (ASP.NET)

I'm trying to set up a basic email feed back form like this, and was wondering about some basic configuration settings. I have used code from this website. I have it working just fine. I'm running IIS on my home machine.

My problem is that I need to upload this stuff to a webhosting place and register a domain and I'm not sure what to put as the smtp mail server value in this script?

Currently I am with the Optusnet ISP and thus for the SMTP server i put

SmtpMail.SmtpServer = "mail.optusnet.com.au"

and then up towards the top of the script I have the contents of the form to be sent to the following email address,

objMM.To = "blah@optusnet.com.au"

[SIZE=3]My question is, what value to I put for SmtpMail.SmtpServer, when I upload this website to some webhosting place? Do I just put it as mail.webhostingplace.com.au or how do you know what to put for the SMTP server?[/SIZE]

I know this is basic and that many of you would have done it a million times before but I just don't know the answer to this and noone seems to be able to give me a straight answer.

Any help would be greatly appreciated. See the script below for what I'm currently using and working on my home machine running IIS.

<%@ Page Language="vb" Debug="true" %> .....

View Replies View Related

SMTP For ASP

I'm having a few problems with getting an SMTP server configured on my
Windows 2000 Server web server. My web server is co-located at my hosts and
i use VNC to remotely access the web server. Acting on advice from my host
IIS's SMTP server has been disabled by running the IIS lockdown Tool. I
have internal access to my hosts SMTP server where i can send mail from my
web site to my own domain email address only, i am not allowed to send email
external address.

Does anyone know of a SMTP server that i can use to send emails from my ASP
website?

My host suggested Jmail for doing the job. I installed JMail on my web
server but i am getting the following error:

"The message was undeliverable. All servers failed to receive the message"

Can anyone tell me what this error is?
Can anyone tell me how to fix this problem?
I am correct in my understanding that JMail has its own SMTP server?
How can i test to see if JMail is working?
after installing JMail do i include my web server IP address as the SMTP
server?

View Replies View Related

SMTP

I want to send email using asp
I' have tested with asp(CDONTS ),but it doesn't work.
For example i send it tosomeone@somedomain,but it doesn't
work.Should i make a configuration?The problem is i only can accept emails,
but i cannot send any.

View Replies View Related

What Is SMTP

I need to insert my smtp in order to use my bulk mailing programming in order to mail my mailing list. What is my smtp and how do I find it or where ?

View Replies View Related

SMTP Down

My web app were sending emails and then emails were not being sent because the SMTP was down. Are there certain steps that need to be followed/implemented at the web-server before an web app can send emails to the end-users into their client email?
Please recommend where I can look into the IIS web-server if there is any place where permissions are set to allow the IIS to communicate with the SMTP mail server?

View Replies View Related

USE CDO With Other SMTP

What is object code for sending mail from CDO to another server SMTP.

View Replies View Related

SMTP Using CDO

I'm trying to send and alert email via ASP page and it's getting stuck in c:InetpubmailrootQueue. Everything else is fine and I get no errors, this page redirects to the right place and everything. The mail just gets stuck in the queue. Go figure!

Here's the script I'm using or do you think my SMTP isn't set up right and if so where can I get some help on setting up the SMTP? Code:

View Replies View Related

Using Asp With Smtp

i have an asp front end app on a win2k server and want it so that when form data is submitted and entered into the database, an email is generated concurrently with the details sent to an email address.

do is this done from asp (any examples) or can it be done with smtp ?

View Replies View Related

SMTP

I have an ASP page that sends email using CDOSYS. If there is any type of failure that causes the email not to be sent, I don't have any way of knowing it. Is there any email component that will notify me or log the failure?

View Replies View Related

Mail Using ASP (POP And SMTP) Help!

I have a website and I need visitorst to be able to send emails to me from it by filling out a form (not mailto:).

I have Win2k3 server enterprise running with IIS and POP3 all setup. My provider blocks port 80 so i redirect using no-ip.com to another port. I tryed CDOSYS and other free third party mailers (currently I have Persits Software free ASPemail installed), but I can't get anything to work. I know by now that I need to set something up (maybe some redirect) on my server so this works.

Please, if anyone knows how to do it, tell me how. In particular, to send an email from my site to at least my local server, and at best to lets say hotmail.com.

View Replies View Related

SMTP Mail

I'm having problems getting CDO.Message to work with SMTP on my Windows 2000
Server. I keep getting the following error:

CDO.Message.1 error '80040213'

The transport failed to connect to the server.

/services/E-CommerceQuote_new.asp, line 2357

I am assuming that it is meaning it can't find the server i have specified
where the SMTP server is, which is the same PC. I have specified by IP and
domain name but i get same error. i know i haven't said much about the setup
im using so if needed i can provided more details.

Does anyone know how to fix this problem?

View Replies View Related







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