RE: [PHP] Email Form

2006-01-20 Thread Weber Sites LTD
From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Friday, January 20, 2006 11:21 PM To: Weber Sites LTD Cc: 'Igal Rubinstein'; 'Thomas Bonham'; php-general@lists.php.net Subject: RE: [PHP] Email Form On Fri, January 20, 2006 9:02 am, Weber Sites LTD wrote: > I'm trying to

RE: [PHP] Email Form

2006-01-20 Thread Richard Lynch
On Fri, January 20, 2006 9:02 am, Weber Sites LTD wrote: > I'm trying to understand why this is good from a SPAM point of view. > I'm guessing that anyone can just add this when sending his own spam > no? Hey, I'm not claiming that the spam criteria are rational, nor that any halfway intelligent s

RE: [PHP] Email Form

2006-01-20 Thread Weber Sites LTD
eber Sites LTD Cc: 'Thomas Bonham'; php-general@lists.php.net Subject: RE: [PHP] Email Form On Thu, January 19, 2006 3:25 pm, Weber Sites LTD wrote: > Check out : > > http://www.weberdev.com/get_example-336.html > > http://www.weberdev.com/get_example-1557.html > > I

Re: [PHP] Email Form

2006-01-20 Thread sunaram patir
dd this when sending his own spam no? > > berber > > -Original Message- > From: Richard Lynch [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 19, 2006 11:37 PM > To: Weber Sites LTD > Cc: 'Thomas Bonham'; php-general@lists.php.net > Subject: RE:

Re: [PHP] Email Form

2006-01-19 Thread AK
- Original Message - From: "Thomas Bonham" <[EMAIL PROTECTED]> To: Sent: Thursday, January 19, 2006 12:40 PM Subject: [PHP] Email Form Hello All, I don't remember how to do email with php. I have all of it done, except for I can't get it to show the senders email address. All I ge

RE: [PHP] Email Form

2006-01-19 Thread Richard Lynch
On Thu, January 19, 2006 3:25 pm, Weber Sites LTD wrote: > Check out : > > http://www.weberdev.com/get_example-336.html > > http://www.weberdev.com/get_example-1557.html > > In general you need to add the From header : > > Mail($To,$subject,$body,"From:[EMAIL PROTECTED]"); In the ideal world, you

RE: [PHP] Email Form

2006-01-19 Thread Weber Sites LTD
Check out : http://www.weberdev.com/get_example-336.html http://www.weberdev.com/get_example-1557.html In general you need to add the From header : Mail($To,$subject,$body,"From:[EMAIL PROTECTED]"); Sincerely berber Visit the Weber Sites Today, To see where PHP might take you tomorrow

Re: [PHP] email form results

2004-12-21 Thread Richard Lynch
Ken Bolton wrote: > Is there a simple way to send the results of a form to an email address? I > have created a form with multiple categories of radio boxes and I have > created a response PHP file that will give the user a confirmation. I'm > just > not sure how to send the results through email.

Re: [PHP] email form results

2004-12-21 Thread Miles Thompson
Assemble all of your data into the message body (see $message below) and mail it to yourself. How you trigger this processing and the call to the mail() function depends on how you've constructed your logic. $message .= $name ."\n"; $message .= $phone . "\n"; $message .= $email; mail( "[EMAIL P

RE: [PHP] email form results

2004-12-21 Thread phpninja
http://www.php.net/mail -phpninja -Original Message- From: Ken Bolton [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 10:11 AM To: [EMAIL PROTECTED] Subject: [PHP] email form results Is there a simple way to send the results of a form to an email address? I have created a for

[PHP] Re: PHP Email Form

2002-04-09 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Hi I have an online email form but I can't get the text layout the same as > the layout someone types in the text Area, here is the final bit of code: > > $message = stripslashes($message); > $message = htmlentities($message); > $messag

Re: [PHP] Email form

2001-05-20 Thread FredrikAT
Check: http://www.php.net/mail <[EMAIL PROTECTED]> skrev i melding [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I've been out of the loop for so long. > > I make a normal form, but the action is something.. > > I don't want it to send from the uers email, but use the server. Some > people do