RE: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread Kristina Anderson
us, this is a website template which may be moved around from > server to server and possibly hosting company to hosting company. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:talk- [EMAIL PROTECTED] On > Behalf Of bzcoder > Sent: Monday, August 04, 2008 5:59

RE: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread (Margaret) Michele Waldman
ound from server to server and possibly hosting company to hosting company. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of bzcoder Sent: Monday, August 04, 2008 5:59 PM To: NYPHP Talk Subject: Re: [nyphp-talk] PHP Bcc Headers (Margaret) Michele Waldman wrot

Re: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread bzcoder
(Margaret) Michele Waldman wrote: I did resort to calling mail() twice. I hated doing it. Then he called me and said there was no from on the email and the client isn’t getting the email, which made me think it was a header issue again. However, My testing shows there is a from. I think th

Re: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread Rolan Yang
ue again. However, My testing shows there is a from. I think the email in question has spam filters set too high. *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *Patrick May *Sent:* Monday, August 0

Re: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread Steve Manes
(Margaret) Michele Waldman wrote: The identical code send out a bcc on my development server. It's definitely the production server issue. Sometimes this works: set an explicit "Return-Path" header to your email address to catch any bounce mail. _

RE: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread (Margaret) Michele Waldman
The identical code send out a bcc on my development server. It's definitely the production server issue. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steve Manes Sent: Monday, August 04, 2008 5:33 PM To: NYPHP Talk Subject: Re: [nyphp-talk] PH

RE: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread (Margaret) Michele Waldman
spam filters set too high. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patrick May Sent: Monday, August 04, 2008 3:47 PM To: NYPHP Talk Subject: Re: [nyphp-talk] PHP Bcc Headers Hello, I recommend following bzcoder's suggestion of using PHP Mailer, or simp

Re: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread Steve Manes
(Margaret) Michele Waldman wrote: I'm using "\r\n" at the end of each line. The headers are being completely ignored. I'll try switching. The did cross my mind before, but I wasn't sure what to test other than "\r\n". Just to rule it out, have you successfully sent Bcc mail to this address

RE: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread (Margaret) Michele Waldman
ubject: Re: [nyphp-talk] PHP Bcc Headers On Mon, Aug 4, 2008 at 3:40 PM, (Margaret) Michele Waldman <[EMAIL PROTECTED]> wrote: > I have a test script already. > > Bcc doesn't work on either. > A few questions to help narrow this down: Have you checked that the To: part

Re: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread Ajai Khattri
On Mon, 4 Aug 2008, bzcoder wrote: > I highly recommend that, unless your like me and love to twiddle with > your email server configuration to get things working 'just so', that > you use either SwiftMailer, http://www.swiftmailer.org/ or PHPMailer > http://phpmailer.codeworxtech.com/index.php

Re: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread John Campbell
On Mon, Aug 4, 2008 at 3:40 PM, (Margaret) Michele Waldman <[EMAIL PROTECTED]> wrote: > I have a test script already. > > Bcc doesn't work on either. > A few questions to help narrow this down: Have you checked that the To: part is working? When you say the Bcc: doesn't work, does [EMAIL PROTECT

Re: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread Patrick May
$headers .= "X-Mailer: PHP/" . phpversion() . "\n"; > >mail("[EMAIL PROTECTED]", "test", "test", $headers); > ?> > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > On

RE: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread (Margaret) Michele Waldman
I have a test script already. Bcc doesn't work on either. And -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of csnyder Sent: Monday, August 04, 2008 3:37 PM To: NYPHP Talk Subject: Re: [nyphp-talk] PHP Bcc Headers On Mon, Aug 4, 2008 at 3:

Re: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread csnyder
On Mon, Aug 4, 2008 at 3:17 PM, (Margaret) Michele Waldman <[EMAIL PROTECTED]> wrote: > I'm using "\r\n" at the end of each line. > > The headers are being completely ignored. > > I'll try switching. The did cross my mind before, but I wasn't sure what to > test other than "\r\n". Completely igno

RE: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread (Margaret) Michele Waldman
] On Behalf Of csnyder Sent: Monday, August 04, 2008 3:15 PM To: NYPHP Talk Subject: Re: [nyphp-talk] PHP Bcc Headers On Mon, Aug 4, 2008 at 2:49 PM, (Margaret) Michele Waldman <[EMAIL PROTECTED]> wrote: > I call a mail function with bcc and from in the header. > > It worked fine on

Re: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread csnyder
On Mon, Aug 4, 2008 at 2:49 PM, (Margaret) Michele Waldman <[EMAIL PROTECTED]> wrote: > I call a mail function with bcc and from in the header. > > It worked fine on my development server, but when I copied the code to > production, the headers stopped working. Same OS? Are you using "\r\n" at th

Re: [nyphp-talk] PHP Bcc Headers

2008-08-04 Thread bzcoder
(Margaret) Michele Waldman wrote: I call a mail function with bcc and from in the header. It worked fine on my development server, but when I copied the code to production, the headers stopped working. ... Does anyone know if there’s something that has to be set in the environment for he

[nyphp-talk] PHP Bcc Headers

2008-08-04 Thread (Margaret) Michele Waldman
I call a mail function with bcc and from in the header. It worked fine on my development server, but when I copied the code to production, the headers stopped working. The versions of php on the production server are 4.4.4 and 5 something. I added a handler to the htaccess to use php5.