Re: [PHP] Email Form

2006-01-20 Thread sunaram patir
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: [PHP] Email Form On Thu, January 19, 2006 3:25 pm, Weber Sites LTD wrote: Check out

RE: [PHP] Email Form

2006-01-20 Thread Weber Sites LTD
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 In general you need to add the From header : Mail

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

RE: [PHP] Email Form

2006-01-20 Thread Weber Sites LTD
: 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 understand why this is good from

[PHP] Email Form

2006-01-19 Thread Thomas Bonham
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 get it from [EMAIL PROTECTED] If some one has a example that they can post that would be great. Thank You Thomas -- PHP General Mailing List

RE: [PHP] Email Form

2006-01-19 Thread Weber Sites LTD
Code from your browser http://toolbar.weberdev.com -Original Message- From: Thomas Bonham [mailto:[EMAIL PROTECTED] Sent: Thursday, January 19, 2006 10:41 PM To: php-general@lists.php.net Subject: [PHP] Email Form Hello All, I don't remember how to do email with php. I have all

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 also will

Re: [PHP] Email Form

2006-01-19 Thread AK
- Original Message - From: Thomas Bonham [EMAIL PROTECTED] To: php-general@lists.php.net 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

[PHP] email form results

2004-12-21 Thread Ken Bolton
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. I've checked the

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

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

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. I've

[PHP] Re: Sending Attachements through php email form

2002-09-12 Thread Craig Donnelly
Edit this to what you need: http://www.evilwalrus.com/viewcode.php?codeEx=546 Regards, Heidi Belal [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, I was wondering if anybody could tell me the best way and how to code sending an attachement with an email

[PHP] Sending Attachements through php email form

2002-09-11 Thread Heidi Belal
Hi, I was wondering if anybody could tell me the best way and how to code sending an attachement with an email form. I want the user to be able to browse and select the file he wants to attach, and i want the reciepent to be able to see the file that has been attached with the email.

Re: [PHP] Sending Attachements through php email form

2002-09-11 Thread Justin French
Hi, I'm not aware of any existing code/samples for this, but the individual components you need to break it down into are pretty straight forward: 1. Learn about forms, validation of user input, and in particular file uploads (which there is a perfect library of working code in the manual:

[PHP] Re: Sending Attachements through php email form

2002-09-11 Thread Manuel Lemos
Hello, On 09/10/2002 11:07 AM, Heidi Belal wrote: Hi, I was wondering if anybody could tell me the best way and how to code sending an attachement with an email form. I want the user to be able to browse and select the file he wants to attach, and i want the reciepent to be able to see

[PHP] .vcf files and PHP Email Form(Newbie)

2002-05-12 Thread webmaster
I want to create an e-mail form that writes a (person's name).vcf(vCard) file and attaches it to the message. This would allow me to eaisly add people to my address book. The source of a sample .vcf(vCard) file is shown below: BEGIN:VCARD VERSION:2.1 N:Harrison;JJ FN:Harrison, JJ ORG:TecEco Pty.

Re: [PHP] .vcf files and PHP Email Form(Newbie)

2002-05-12 Thread Miguel Cruz
Use any of about 10 billion available MIME mail classes/functions (or write your own; there's really nothing to it) and attach the vcard as content-type: text/x-vcard. miguel On Sun, 12 May 2002 [EMAIL PROTECTED] wrote: I want to create an e-mail form that writes a (person's name).vcf(vCard)

Re: [PHP] .vcf files and PHP Email Form(Newbie)

2002-05-12 Thread webmaster
I don't have much experiance with MIME. where could I find a tutorial or ready made class? - Original Message - From: Miguel Cruz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, May 12, 2002 4:41 PM Subject: Re: [PHP] .vcf files and PHP Email Form(Newbie

[PHP] PHP Email Form

2002-04-09 Thread Declan Kenny
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); $message = nl2br($message); $from=From: $email; $to= [EMAIL PROTECTED];

[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); $message =

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 don't

[PHP] Email form

2001-05-19 Thread [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 don't have an email client configured. Can yah help? Thanks, Owen -- PHP General Mailing List (http://www.php.net/) To