i m just new to Web Tech. i have to design a web page in HTML in which user enters some information in a form on that webpage , on submitting all that information passes to me on my email . Without use of outlookexpress on Client Computers. Any Solution plz
Classic ASP - How to email from a webpage
Collapse
X
-
Tags: None
-
I sure hope you mean a server side language (like PHP, ASP, etc.)Originally posted by markusn00bYou need to utilise a clientside language.
Have a look into PHP and it's mail() funciton
RonaldComment
-
I have problem in sending email In ASP with this Code . When i run it shows no error but no mail is received at other end
Code:<% Set myMail=CreateObject("CDO.Message") myMail.Subject="Sending email with CDO" myMail.From="abc@abc.com" myMail.To="ccd@yahoo.ca" myMail.Bcc="dcd@yahoo.ca" myMail.Cc="deg@yahoo.ca" myMail.TextBody="This is a message." myMail.Send set myMail=nothing response.write(" Done ") %>Comment
-
This is the HTML and CSS forum. Your question does not belong in this forum but in the ASP forum.
RonaldComment
-
ASP/CDOSYS - E-Mail not sending
i have problem in sending email In ASP with this Code . When i run it shows no error but no mail is received at other end i m using IIS and XP Pro using default localhost server
any suggestionsCode:<% Set myMail=CreateObject("CDO.Message") myMail.Subject="Sending email with CDO" myMail.From="abc@abc.com" myMail.To="ccd@yahoo.ca" myMail.Bcc="dcd@yahoo.ca" myMail.Cc="deg@yahoo.ca" myMail.TextBody="This is a message." myMail.Send set myMail=nothing response.write(" Done ") %>Comment
-
I find the easiest way to diagnose email problems is to create a VBScript with your email code and run it on the server - it should give you a message with some idea about why it's not working.
Also, do you have McAfee or similar software running on the server? Some firewalls or virus scanners have a default configuration which can prevent mail from sending.
Let me know how you get on,
Dr BComment
-
-
A very special Thanks to Dr. BunchmanOriginally posted by DrBunchmanI find the easiest way to diagnose email problems is to create a VBScript with your email code and run it on the server - it should give you a message with some idea about why it's not working.
Also, do you have McAfee or similar software running on the server? Some firewalls or virus scanners have a default configuration which can prevent mail from sending.
Let me know how you get on,
Dr B
My Mccafee was killing my mails. But what if the host server has such kind of softwares. Any suggestionsComment
-
Glad to help :-)
McAfee has a setting which says something like:
"Prevent from mass-mailing worms on Port 25"
Which is what is preventing you from sending mail. You will need to check with your host but you'll probably find that they will have a dedicated mail server which you can use rather than the default smtp server.
If you are installing on your own (or company) servers and you wish to use the default smtp then you can either turn this setting off or use a different port to send your mail.
Hope this helps,
Dr BComment
Comment