| View previous topic :: View next topic |
| Author |
Message |
ramakrishnad
Joined: 14 Feb 2008 Posts: 2
|
Posted: Thu Feb 14, 2008 1:41 pm Post subject: how to send email from static html page |
|
|
hi
how to send email from static html for website
Regards
Ram |
|
| Back to top |
|
 |
|
|
leonard 100+ Club

Joined: 18 Dec 2007 Posts: 147 Location: Switzerland
|
Posted: Thu Feb 14, 2008 4:38 pm Post subject: Re: how to send email from static html page |
|
|
A static HTML page cannot send emails.
You need an MTA (mail transfer agent) to do that.
FlabbyRabbit has posted how you can use PHP as MTA:
http://www.devppl.com/forum/send-an-email-from-you-website-vt8833.html
In HTML all you can do is send the information to the server (where it will be processed by php in our example above) or use mailto:
| Code: |
| <a href="mailto:my.name@example.org">my email link</a> |
, which will only open the users default mailing program.
cheers!
- leonard |
|
| Back to top |
|
 |
Johnathan 500+ Club

Joined: 31 May 2007 Posts: 940 Location: Belfast, Northen Ireland
|
Posted: Thu Feb 14, 2008 5:18 pm Post subject: Re: how to send email from static html page |
|
|
| You can use http://emailmeform.com you just fill out the stuff you want on your form and they will generate it for you, all you have to do is put it on your page and they send the info to you. Good if your server doesnt support PHP. |
|
| Back to top |
|
 |
|