Go Back   SitePoint Forums > Forum Index > Program Your Site > Classic ASP
Newsletter FAQ Members List Calendar Mark Forums Read

New to SitePoint Forums? Register here for free!

SitePoint Sponsor
 
Reply
 
Thread Tools Display Modes
Old Apr 6, 2006, 14:48   #1
Kanustep
SitePoint Zealot
 
Kanustep's Avatar
 
Join Date: Jul 2005
Posts: 175
Simple ASP script don't work

Hi,

I'm using this script to send e-mail from a flash form. The script was working fine in the previous host but now is not sending e-mails.

Does anyone knows what I need to change to make it work?
The script is hosted on a Windows 2003.

The script is this little code:

PHP Code:

Set Mailer = Server.CreateObject("SMTPsvg.Mailer")


rem change this RemoteHost to a valid SMTP address before testing
Mailer
.RemoteHost = "localhost"

Mailer.FromName = "Contacto Web"
Mailer.FromAddress = "webmaster@nempresas.com"

Mailer.AddRecipient "internet", Request.QueryString("email")
Mailer.ContentType = "text/html"
Mailer.Subject = "Contacto Web"
Mailer.BodyText = strResponse


if not Mailer.SendMail then
Response
.Write ("&texto=O envio de correio falhou...&mem=Por favor tente outra vez")
else
Response.Write ("&texto=A sua mensagem foi enviada com sucesso&mem=Obrigado, seremos breves na resposta")
end if
%>
Thank you in advance
Kanustep is offline   Reply With Quote
Old Apr 6, 2006, 18:35   #2
bbolte
Do or do not, there is no try
 
bbolte's Avatar
 
Join Date: Nov 2001
Location: The Central Plains
Posts: 3,230
do you know for sure that the new host has this particular email component installed? if it worked before, but doesn't now and the script didn't change, then that's my guess.
bbolte is offline   Reply With Quote
Old Apr 6, 2006, 19:06   #3
FFCus
SitePoint Addict
 
FFCus's Avatar
 
Join Date: Feb 2006
Posts: 351
If you need an ASP page to see which components are installed on the server, this one is pretty neat.
FFCus is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread | Next Thread »

Thread Tools
Display Modes

 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Sponsored Links
 
Forum Jump


All times are GMT -7. The time now is 15:12.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Copyright 1998-2009, SitePoint Pty Ltd. All Rights Reserved