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
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
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
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:
- 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 se
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
com
Search for PHP 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
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 (http
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.
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
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
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
documentati
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
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 se
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:
http:
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.
Thanks
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: [P
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)
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.
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
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]";
ma
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
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 u
23 matches
Mail list logo