RE: [PHP] Links in e-mail

2003-05-30 Thread Joe Stump
Most MUA's will convert http://* or www.* to a link. Otherwise you'll have to send MIME encoded HTML with a href=/a tags. The problem with the second solution is that not all MUA's (ie. mutt) support MIME encoded HTML messages. --Joe -- Joe Stump [EMAIL PROTECTED] http://www.joestump.net Label

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 links,

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 -- PHP General