Re: [PHP] Links in e-mail

2003-05-30 Thread ruusvuu
$link = "http://somedomain.com";; $msg .= "$link\n"; Quoting christian tischler <[EMAIL PROTECTED]>: > I use mail() to send e-mail automatically. > > But all I can send is text. I would like to send links, but can figure out > how to make them work. > > Thanks, > > Christian > > > > -- >

Re: [PHP] Links in e-mail

2003-05-30 Thread Adam Voigt
For the third parameter of the mail command, use: "Content-type:text/html\r\n" I.E.: mail($to,$subject,$body,"Content-type:text/html\r\n"); On Thu, 2003-05-29 at 11:13, christian tischler wrote: > I use mail() to send e-mail automatically. > > But all I can send is text. I would like to send l

RE: [PHP] Links in e-mail

2003-05-30 Thread Joe Stump
ump.net "Label makers are proof God wants Sys Admins to be happy." -Original Message- From: christian tischler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 8:14 AM To: [EMAIL PROTECTED] Subject: [PHP] Links in e-mail I use mail() to send e-mail automatically. But all I

[PHP] Links in e-mail

2003-05-30 Thread christian tischler
I use mail() to send e-mail automatically. But all I can send is text. I would like to send links, but can figure out how to make them work. Thanks, Christian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php