Brad wrote:
I am not sure that would help.
Just another can of worms.
The $_REQUEST is tied into a whole bunch of database functions.
I have no idea what you mean by this. It makes no sense to me.
My present code....
<?
$email = $_REQUEST['email'] ;
$message = '<a href="'.www.zoneofsuccessclub.com.'">link </a>';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
mail( $email, "Your FREE book from Zone of Success Club .com",
$headers, $message, "From: $email" );
?>
You *really* need to read the manual page for function before you use
them. For example a quick glance at http://php.net/function.mail reveals
that you have the parameters in an almost completely wrong order.
And please tell me you're not really setting the to address directly
from an external variable with verifying that it's just an email address
and nothing else. Really bad idea.
-Stut
--
http://stut.net/
-----Original Message-----
From: Jochem Maas [mailto:jochem@xxxxxxxxxxxxx]
Sent: Saturday, November 10, 2007 3:44 PM
To: Brad
Subject: Re: Cannot send a hyperlink
this will help: http://phpmailer.sourceforge.net/
Brad wrote:
I am having trouble send an email with a hyperlink
Php is parsing html as text????
If I add the proper header information to ?make it work? The email no
longer
goes through?
Here is the code
<?
$email = $_REQUEST['email'] ;
$body = '<a href="'.www.zoneofsuccessclub.com.'">link </a>';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
mail( $email, "Your FREE book from Zone of Success Club .com",
$headers, $message, "From: $email" );
?>
Thanks
Brad
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.503 / Virus Database: 269.15.28/1122 - Release Date:
11/10/2007
10:41 AM
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.503 / Virus Database: 269.15.28/1122 - Release Date: 11/10/2007
10:41 AM
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.503 / Virus Database: 269.15.28/1122 - Release Date: 11/10/2007
10:41 AM
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php