Re: [PHP] Cannot send a hyperlink (resent)

2007-11-16 Thread Jason Pruim
On Nov 16, 2007, at 9:15 AM, Scott Wilcox wrote: I personally think many, many mail servers will block any mail with X-Mailer containing PHP. Purely because there are an insane number of chances that its going to be spam. This is purely based on my opinion though, I'd expect others on the

RE: [PHP] Cannot send a hyperlink (resent)

2007-11-16 Thread Zoltán Németh
2007. 11. 16, péntek keltezéssel 09.09-kor tedd ezt írta: At 7:29 PM +0100 11/15/07, Per Jessen wrote: Brad wrote: Why is php refusing to parse as html? Here your code cut down to what you need: $headers = From: \.$fromname.\ .$fromaddress..$eol; $headers .= X-Mailer: PHP

Re: [PHP] Cannot send a hyperlink (resent)

2007-11-16 Thread Daniel Brown
On Nov 16, 2007 9:15 AM, Scott Wilcox [EMAIL PROTECTED] wrote: I personally think many, many mail servers will block any mail with X-Mailer containing PHP. Purely because there are an insane number of chances that its going to be spam. This is purely based on my opinion though, I'd expect

RE: [PHP] Cannot send a hyperlink (resent)

2007-11-16 Thread tedd
At 7:29 PM +0100 11/15/07, Per Jessen wrote: Brad wrote: Why is php refusing to parse as html? Here your code cut down to what you need: $headers = From: \.$fromname.\ .$fromaddress..$eol; $headers .= X-Mailer: PHP .phpversion().$eol; $headers .= MIME-Version: 1.0\r\n; $headers .=

Re: [PHP] Cannot send a hyperlink (resent)

2007-11-16 Thread Scott Wilcox
I personally think many, many mail servers will block any mail with X-Mailer containing PHP. Purely because there are an insane number of chances that its going to be spam. This is purely based on my opinion though, I'd expect others on the list to share it or be similar in viewpoint though.

RE: [PHP] Cannot send a hyperlink (resent)

2007-11-16 Thread Per Jessen
tedd wrote: I've been told that using: $headers .= X-Mailer: PHP .phpversion().$eol; is a good way to get stuck in a spam filter -- what do you think? It wouldn't get you stuck in our filters. Personally I never add an X-Mailer when generating emails with PHP or bash or whatever - what's

RE: [PHP] Cannot send a hyperlink (resent)

2007-11-16 Thread tedd
Hi gang: I didn't catch it and I'm too lazy to look it up, but someone in this thread provided this reference: http://www.bath.ac.uk/bucs/email/anatomy.shtml There was a similar thread going on a different list and I was told: Or RFCs 2821 and 2822 (the URL above refers to RFC 822, which

Re: [PHP] Cannot send a hyperlink (resent)

2007-11-16 Thread Per Jessen
Scott Wilcox wrote: I personally think many, many mail servers will block any mail with X-Mailer containing PHP. Purely because there are an insane number of chances that its going to be spam. No sane mailserver or mailserver admin will block an email purely based on an X-Mailer: header.

RE: [PHP] Cannot send a hyperlink (resent)

2007-11-15 Thread Per Jessen
Brad wrote: Why is php refusing to parse as html? Here your code cut down to what you need: $headers = From: \.$fromname.\ .$fromaddress..$eol; $headers .= X-Mailer: PHP .phpversion().$eol; $headers .= MIME-Version: 1.0\r\n; $headers .= Content-Type: text/html; charset=\iso-8859-1\\r\n;