Hey everyone,
A client of mine is running a windows dedicated server and I have written a script that should send an email... the script is written in ASP and when I test it on my server it works fine.
When I put it on my client's server... the script does absolutely nothing!
Here are the guts of the script
Code:
Set objMail = Server.CreateObject("CDO.Message")
objMail.From = "fromemail
objMail.To = payer_email
objMail.Bcc = "clients email"
objMail.Subject = "Track your Paypal Order atdomain"
objMail.HTMLBody="<p><font size =""1"" face=""Tahoma"">Dear " & first_name & " " & last_name & "," & vbcrlf & vbcrlf & "<br><br>Welcome to www.xxx.com! If you would like to track your order, please use the following login details at <br><br><a href='login.asp'>link</a>" & vbcrlf & vbcrlf & "<br><br>Username:" & payer_email & vbcrlf & "<br><br>Password: " & password & "</p>"
objMail.Send
Like I said, the script works fine on my server, but not my clients. My client also claims that other scripts on his server use the CDO.Message methods and works fine.
Can there be a server setting that isn't correct for one file that will block one file from not sending emails.
Need help..
Thanks Everyone.
__________________
Please login or register to view this content. Registration is FREE - step-by-step learn how to design, create and install your own website in hours...not days. Please login or register to view this content. Registration is FREEwas never so easy.
|