Re: [PHP] two small issues with php mail OT

2007-11-21 Thread Zoltán Németh
[EMAIL PROTECTED] Date: Tue, 20 Nov 2007 14:25:21 -0600 To: Stephen Johnson [EMAIL PROTECTED], php-general@lists.php.net Conversation: [PHP] two small issues with php mail OT Subject: RE: [PHP] two small issues with php mail OT [snip] I wrote about this a long time ago

Re: [PHP] two small issues with php mail OT

2007-11-21 Thread Wolf
http://www.thumbnailresume.com -- From: Jay Blanchard [EMAIL PROTECTED] Date: Tue, 20 Nov 2007 14:25:21 -0600 To: Stephen Johnson [EMAIL PROTECTED], php-general@lists.php.net Conversation: [PHP] two small issues with php mail OT Subject: RE: [PHP] two small

Re: [PHP] two small issues with php mail OT

2007-11-21 Thread Daniel Brown
[EMAIL PROTECTED] Date: Tue, 20 Nov 2007 14:25:21 -0600 To: Stephen Johnson [EMAIL PROTECTED], php-general@lists.php.net Conversation: [PHP] two small issues with php mail OT Subject: RE: [PHP] two small issues with php mail OT [snip] I wrote about this a long time ago

Re: [PHP] two small issues with php mail OT

2007-11-21 Thread Dimiter Ivanov
PROTECTED], php-general@lists.php.net Conversation: [PHP] two small issues with php mail OT Subject: RE: [PHP] two small issues with php mail OT [snip] I wrote about this a long time ago ... In a galaxy far far away... http://www.thelonecoder.com/Blog/?p=7 Be good

Re: [PHP] two small issues with php mail OT

2007-11-21 Thread Wolf
http://www.thumbnailresume.com -- From: Jay Blanchard [EMAIL PROTECTED] Date: Tue, 20 Nov 2007 14:25:21 -0600 To: Stephen Johnson [EMAIL PROTECTED], php-general@lists.php.net Conversation: [PHP] two small issues with php mail OT Subject: RE: [PHP] two small

RE: [PHP] two small issues with php mail OT

2007-11-21 Thread Andrés Robinet
-Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 21, 2007 2:05 PM To: Zoltán Németh Cc: Børge Holen; php-general@lists.php.net; Dimiter Ivanov Subject: Re: [PHP] two small issues with php mail OT Zoltán Németh [EMAIL PROTECTED] wrote: 2007

RE: [PHP] two small issues with php mail

2007-11-20 Thread Andrés Robinet
? It can't be that hard to send out a list of emails with CC / Bcc headers!!! Rob -Original Message- From: Per Jessen [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 20, 2007 5:44 AM To: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Jim Lucas wrote

Re: [PHP] two small issues with php mail

2007-11-20 Thread Per Jessen
Jim Lucas wrote: remember, he is wanting to setup SMTP auth. So he will not be using PHP's mail() function. He needs to talk directly to the SMTP server. Uh, I guess I must've missed that bit. Seems a tad complicated for sending an email ... /Per Jessen, Zürich -- PHP General Mailing

RE: [PHP] two small issues with php mail

2007-11-20 Thread Per Jessen
Andrés Robinet wrote: I don't really know the internals of how and why Bcc won't work with the mail function on windows, but if these guys who developed PHPMailer say so... Holy Word, so I wouldn't expect the mail function on Windows to work with Bcc. What you can do? Well... if Bcc is a

Re: [PHP] two small issues with php mail

2007-11-20 Thread Jim Lucas
Per Jessen wrote: Brad wrote: Where should the bcc go if not the header? In PHP the mail() function does indeed appear to support a bcc: header, but I'm assuming it will be removed before the email is passed to sendmail. /Per Jessen, Zürich remember, he is wanting to setup SMTP

RE: [PHP] two small issues with php mail

2007-11-20 Thread Per Jessen
Andrés Robinet wrote: It can't be that hard to send out a list of emails with CC / Bcc headers!!! You wouldn't have thought so, but ... /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] two small issues with php mail

2007-11-20 Thread Per Jessen
Zoltán Németh wrote: actually there is Bcc header, and it is standard. see: http://tools.ietf.org/html/rfc4021#page-9 http://tools.ietf.org/html/rfc2822#page-22 Interesting - I guess I've never needed it. I've never bothered with the mail() function, I find it just as easy to format the

RE: [PHP] two small issues with php mail

2007-11-20 Thread Per Jessen
Brad wrote: Where should the bcc go if not the header? In PHP the mail() function does indeed appear to support a bcc: header, but I'm assuming it will be removed before the email is passed to sendmail. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] two small issues with php mail

2007-11-20 Thread Zoltán Németh
2007. 11. 19, hétfő keltezéssel 19.54-kor Per Jessen ezt írta: Brad wrote: $headers = 'bcc: [EMAIL PROTECTED]'; Works but corrupts the from portion and changes it to nobody Which I think goes back too the smtp portion. There is no bcc: header. BCC'ing someone is normally done by

Re: [PHP] two small issues with php mail

2007-11-20 Thread Stut
Andrés Robinet wrote: Brad, This comment is extracted directly from PHPMailer source (before the implementation for the function AddBCC) /** * Adds a Bcc address. Note: this function works * with the SMTP mailer on win32, not with the mail * mailer. * @param string $address *

Re: [PHP] two small issues with php mail

2007-11-20 Thread Stut
Brad wrote: ? $email = $_REQUEST['email']; $fromaddress = '[EMAIL PROTECTED]'; $fromname = 'Zone of success Club'; $eol = \r\n; $headers = 'From: '.$fromname.' '.$fromaddress.''.$eol; // $headers = 'bcc: '[EMAIL PROTECTED]'; $headers .= 'Reply-To: '.$fromname.' '.$fromaddress.''.$eol;

Re: [PHP] two small issues with php mail

2007-11-20 Thread Wolf
Jim Lucas [EMAIL PROTECTED] wrote: Per Jessen wrote: Brad wrote: !-- Snip for brevity -- remember, he is wanting to setup SMTP auth. So he will not be using PHP's mail() function. He needs to talk directly to the SMTP server. Jim Jim, At this point, we need to just get his

Re: [PHP] two small issues with php mail

2007-11-20 Thread Jim Lucas
Stut wrote: Brad wrote: ? $email = $_REQUEST['email']; $fromaddress = '[EMAIL PROTECTED]'; $fromname = 'Zone of success Club'; $eol = \r\n; $headers = 'From: '.$fromname.' '.$fromaddress.''.$eol; // $headers = 'bcc: '[EMAIL PROTECTED]'; $headers .= 'Reply-To: '.$fromname.'

Re: [PHP] two small issues with php mail

2007-11-20 Thread Jim Lucas
Wolf wrote: Jim Lucas [EMAIL PROTECTED] wrote: Per Jessen wrote: Brad wrote: !-- Snip for brevity -- remember, he is wanting to setup SMTP auth. So he will not be using PHP's mail() function. He needs to talk directly to the SMTP server. Jim Jim, At this point, we need to just

RE: [PHP] two small issues with php mail

2007-11-20 Thread Andrés Robinet
Wolf wrote: Jim Lucas [EMAIL PROTECTED] wrote: Per Jessen wrote: Brad wrote: !-- Snip for brevity -- remember, he is wanting to setup SMTP auth. So he will not be using PHP's mail() function. He needs to talk directly to the SMTP server. Jim Jim, At this point, we

Re: [PHP] two small issues with php mail

2007-11-20 Thread Philip Thompson
On Nov 20, 2007 9:13 AM, Wolf [EMAIL PROTECTED] wrote: Jim Lucas [EMAIL PROTECTED] wrote: Wolf wrote: Jim Lucas [EMAIL PROTECTED] wrote: Per Jessen wrote: Brad wrote: !-- Snip for brevity -- remember, he is wanting to setup SMTP auth. So he will not be using PHP's

Re: [PHP] two small issues with php mail

2007-11-20 Thread Wolf
Jim Lucas [EMAIL PROTECTED] wrote: Wolf wrote: Jim Lucas [EMAIL PROTECTED] wrote: Per Jessen wrote: Brad wrote: !-- Snip for brevity -- remember, he is wanting to setup SMTP auth. So he will not be using PHP's mail() function. He needs to talk directly to the SMTP

Re: [PHP] two small issues with php mail

2007-11-20 Thread Stut
Jim Lucas wrote: Stut wrote: Brad wrote: ? $email = $_REQUEST['email']; $fromaddress = '[EMAIL PROTECTED]'; $fromname = 'Zone of success Club'; $eol = \r\n; $headers = 'From: '.$fromname.' '.$fromaddress.''.$eol; // $headers = 'bcc: '[EMAIL PROTECTED]'; $headers .= 'Reply-To:

Re: [PHP] two small issues with php mail

2007-11-20 Thread Stut
Børge Holen wrote: OMG the top posting on this freakin' issue is a headache Whereas removing all of the previous message is like a sensual massage. -Stut -- http://stut.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] two small issues with php mail

2007-11-20 Thread Børge Holen
OMG the top posting on this freakin' issue is a headache -- --- Børge Holen http://www.arivene.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] two small issues with php mail

2007-11-20 Thread Børge Holen
On Tuesday 20 November 2007 17:49:02 Stut wrote: Børge Holen wrote: OMG the top posting on this freakin' issue is a headache Whereas removing all of the previous message is like a sensual massage. okey... -Stut -- http://stut.net/ -- --- Børge Holen http://www.arivene.net -- PHP

Re: [PHP] two small issues with php mail

2007-11-20 Thread Per Jessen
Stut wrote: Børge Holen wrote: OMG the top posting on this freakin' issue is a headache Whereas removing all of the previous message is like a sensual massage. Pure stress-relief. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] two small issues with php mail

2007-11-20 Thread Michael McGlothlin
I hate top posters. Pure evil. OMG the top posting on this freakin' issue is a headache Whereas removing all of the previous message is like a sensual massage Pure stress-relief. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] two small issues with php mail

2007-11-20 Thread Jason Pruim
Honestly for me... top posting, On Nov 20, 2007, at 1:19 PM, Michael McGlothlin wrote: I hate top posters. Pure evil. OMG the top posting on this freakin' issue is a headache Whereas removing all of the previous message is like a sensual massage inline posting, Pure stress-relief.

Re: [PHP] two small issues with php mail

2007-11-20 Thread Steve Edberg
Personally At 1:31 PM -0500 11/20/07, Jason Pruim wrote: I preferHonestly for me... top posting, sideOn Nov 20, 2007, at 1:19 PM, Michael McGlothlin wrote: posting. I hate top posters. Pure evil. -steve OMG the top posting on this freakin'

Re: [PHP] two small issues with php mail

2007-11-20 Thread Stephen Johnson
-- From: Michael McGlothlin [EMAIL PROTECTED] Date: Tue, 20 Nov 2007 11:19:22 -0700 To: Per Jessen [EMAIL PROTECTED] Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail I hate top posters. Pure evil. OMG the top posting on this freakin' issue is a headache

RE: [PHP] two small issues with php mail OT

2007-11-20 Thread Jay Blanchard
[snip] I wrote about this a long time ago ... In a galaxy far far away... http://www.thelonecoder.com/Blog/?p=7 Be good lemmings and do as you're told... [/snip] Sitting squarely on the fence he is -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] two small issues with php mail OT

2007-11-20 Thread Stephen Johnson
PROTECTED], php-general@lists.php.net Conversation: [PHP] two small issues with php mail OT Subject: RE: [PHP] two small issues with php mail OT [snip] I wrote about this a long time ago ... In a galaxy far far away... http://www.thelonecoder.com/Blog/?p=7 Be good lemmings and do

Re: [PHP] two small issues with php mail OT

2007-11-20 Thread Jochem Maas
, 20 Nov 2007 14:25:21 -0600 To: Stephen Johnson [EMAIL PROTECTED], php-general@lists.php.net Conversation: [PHP] two small issues with php mail OT Subject: RE: [PHP] two small issues with php mail OT [snip] I wrote about this a long time ago ... In a galaxy far far away... http

Re: [PHP] two small issues with php mail OT

2007-11-20 Thread Børge Holen
with php mail OT Subject: RE: [PHP] two small issues with php mail OT [snip] I wrote about this a long time ago ... In a galaxy far far away... http://www.thelonecoder.com/Blog/?p=7 Be good lemmings and do as you're told... [/snip] Sitting squarely on the fence he is -- PHP

Re: [PHP] two small issues with php mail

2007-11-19 Thread Jim Lucas
Brad wrote: Implementing Bcc and smtp. #1 email is only being sent to a few recipients. I need to implement $smtp = ‘localhost’; if the previous line is a cut/paste, it looks like you are using M$ special quotes or back tics maybe. make sure they are single or double quotes and you

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: Implementing Bcc and smtp. #1 email is only being sent to a few recipients. I need to implement $smtp = ‘localhost’; if the previous line is a cut/paste, it looks like you are using M$ special

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
[mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 1:26 PM To: 'Jim Lucas' Cc: php-general@lists.php.net Subject: RE: [PHP] two small issues with php mail $headers = 'bcc: [EMAIL PROTECTED]'; Works but corrupts the from portion and changes it to nobody Which I think goes back too the smtp

RE: [PHP] two small issues with php mail

2007-11-19 Thread Per Jessen
Brad wrote: $headers = 'bcc: [EMAIL PROTECTED]'; Works but corrupts the from portion and changes it to nobody Which I think goes back too the smtp portion. There is no bcc: header. BCC'ing someone is normally done by sending them the email without listing them explicitly in to: or cc:.

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
PROTECTED] Sent: Monday, November 19, 2007 1:55 PM To: php-general@lists.php.net Subject: RE: [PHP] two small issues with php mail Brad wrote: $headers = 'bcc: [EMAIL PROTECTED]'; Works but corrupts the from portion and changes it to nobody Which I think goes back too the smtp portion

Re: [PHP] two small issues with php mail

2007-11-19 Thread Stut
Brad wrote: Implementing Bcc and smtp. Here we go again #1 email is only being sent to a few recipients. I need to implement $smtp = ‘localhost’; Somewhere, but I keep getting parse errors? Those are not normal quotes, but I'm guessing you actually typed that in the evil that is

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
PHP mailer is not in the assignment and will be counted against me! -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 3:43 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: Implementing Bcc

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
:43 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: Implementing Bcc and smtp. Here we go again #1 email is only being sent to a few recipients. I need to implement $smtp = ‘localhost’; Somewhere, but I keep getting parse errors

Re: [PHP] two small issues with php mail

2007-11-19 Thread Stut
Subject: Re: [PHP] two small issues with php mail Brad wrote: Implementing Bcc and smtp. Here we go again #1 email is only being sent to a few recipients. I need to implement $smtp = ‘localhost’; Somewhere, but I keep getting parse errors? Those are not normal quotes, but I'm guessing

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
on methods to solve my issue would be duly appreciated! -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:17 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: This information is pulled directly off

RE: [PHP] two small issues with php mail

2007-11-19 Thread Wolf
Brad [EMAIL PROTECTED] wrote: PHP mailer is not in the assignment and will be counted against me! -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 3:43 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail

Re: [PHP] two small issues with php mail

2007-11-19 Thread Stut
, 2007 4:17 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: This information is pulled directly off the php website when used for other applications, so if I am wrong, then so are they. As for php mailer, my professor explained it very well

RE: [PHP] two small issues with php mail

2007-11-19 Thread Wolf
assistance on methods to solve my issue would be duly appreciated! -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:17 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: This information

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
! -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:39 PM To: Brad Cc: php-general@lists.php.net; 'Stut' Subject: RE: [PHP] two small issues with php mail Since it is not in the assignment, find out how to do things within the parameters of your

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
from point a to point d? -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:41 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: This is why I am on this mailing instead of the php site

RE: [PHP] two small issues with php mail

2007-11-19 Thread Wolf
1. Always copy the list back 2. HERE is the right word you want, since you can't HEAR someone's on email or when reading the system files. Maybe you should take English Grammar 101 for your next course. 3. Who says you need access to the server backend... Google phpinfo() - very basic,

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
I am very much aware of phpinfo() Which has nothing to do with being able to edit the php.ini file! -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:59 PM To: Brad; php-general Subject: RE: [PHP] two small issues with php mail 1. Always copy

RE: [PHP] two small issues with php mail

2007-11-19 Thread Wolf
] Sent: Monday, November 19, 2007 4:59 PM To: Brad; php-general Subject: RE: [PHP] two small issues with php mail 1. Always copy the list back 2. HERE is the right word you want, since you can't HEAR someone's on email or when reading the system files. Maybe you should take English Grammar

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
-general@lists.php.net Subject: RE: [PHP] two small issues with php mail I didn't say TO edit the php.ini file, but it will tell you what the setup of said server is, including compiled in pieces and smtp settings. Are you aware of .htaccess files? google override php.ini using .htaccess and you

Re: [PHP] two small issues with php mail

2007-11-19 Thread Stut
/ -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:39 PM To: Brad Cc: php-general@lists.php.net; 'Stut' Subject: RE: [PHP] two small issues with php mail Since it is not in the assignment, find out how to do things within the parameters of your

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
professor luck. -Stut -- http://stut.net/ -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:39 PM To: Brad Cc: php-general@lists.php.net; 'Stut' Subject: RE: [PHP] two small issues with php mail Since it is not in the assignment, find out how

Re: [PHP] two small issues with php mail

2007-11-19 Thread Stut
Brad wrote: You say The use of BCC with the PHP mail function is pretty well-explained on the PHP manual page for said function. I say, No it doesn't, I tried everything on that page and it either parse error'ed or didn't work. Wrong bit. I also said... // $headers = 'bcc: '[EMAIL

Re: [PHP] two small issues with php mail

2007-11-19 Thread Stut
Subject: Re: [PHP] two small issues with php mail Brad wrote: Well, since http://forums.hostmysite.com/about1171.html states $headers .= CC: [EMAIL PROTECTED]; Which does not work for me AT ALL and Stut called me a [EMAIL PROTECTED] for doing it, I am assuming that all this key wording on google

RE: [PHP] two small issues with php mail

2007-11-19 Thread Wolf
-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: Well, since http://forums.hostmysite.com/about1171.html states $headers .= CC: [EMAIL PROTECTED]; Which does not work for me AT ALL and Stut called me a [EMAIL PROTECTED] for doing it, I am

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
### -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 5:25 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: You say The use of BCC with the PHP mail function is pretty well

RE: [PHP] two small issues with php mail

2007-11-19 Thread Wolf
### -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 5:25 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: You say The use of BCC

Re: [PHP] two small issues with php mail

2007-11-19 Thread Chris
#1 email is only being sent to a few recipients. I need to implement $smtp = ‘localhost’; Somewhere, but I keep getting parse errors? Don't use fancy ms-word quotes, use the normal single quotes. php mail() only uses the smtp config if you are sending on a windows machine.

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
:23 PM To: Brad Cc: php-general@lists.php.net; 'Stut' Subject: RE: [PHP] two small issues with php mail Why is what? Sorry, you are going to have to go back and phrase this into a complete sentence. it makes no sense refers to what exactly? No, you don't have clearance since you haven't passed

Re: [PHP] two small issues with php mail

2007-11-19 Thread Philip Thompson
On Nov 19, 2007 5:52 PM, Brad [EMAIL PROTECTED] wrote: Why are you being to belligerent? English 101-104 I have aced. Top secret security clearance I maintain. Concatenate I know well (why would I combine the from, and the bcc?) I will refrain from the rest of the posts/slams and stick to

RE: [PHP] two small issues with php mail

2007-11-19 Thread Wolf
PROTECTED] Sent: Monday, November 19, 2007 6:23 PM To: Brad Cc: php-general@lists.php.net; 'Stut' Subject: RE: [PHP] two small issues with php mail Why is what? Sorry, you are going to have to go back and phrase this into a complete sentence. it makes no sense refers to what exactly

Re: [PHP] two small issues with php mail

2007-11-19 Thread David Giragosian
On 11/19/07, Philip Thompson [EMAIL PROTECTED] wrote: On Nov 19, 2007 5:52 PM, Brad [EMAIL PROTECTED] wrote: Why are you being to belligerent? English 101-104 I have aced. Top secret security clearance I maintain. Concatenate I know well (why would I combine the from, and the bcc?) I

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
: Monday, November 19, 2007 7:00 PM To: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail On Nov 19, 2007 5:52 PM, Brad [EMAIL PROTECTED] wrote: Why are you being to belligerent? English 101-104 I have aced. Top secret security clearance I maintain. Concatenate I know

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
); ? -Original Message- From: Philip Thompson [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 7:00 PM To: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail On Nov 19, 2007 5:52 PM, Brad [EMAIL PROTECTED] wrote: Why are you being to belligerent? English 101-104 I have

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 8:44 PM To: Brad Subject: RE: [PHP] two small issues with php mail well, you need to do some basic debugging. a) replace your mail() function with print statements and review the output to make certain

RE: [PHP] two small issues with php mail

2007-11-19 Thread Andrés Robinet
[mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 8:26 PM To: 'David Giragosian' Subject: RE: [PHP] two small issues with php mail My original issue is trying to implement a Bcc and Emails are only making it to 50% of the recipients. Research and past experience says

Re: [PHP] two small issues with php mail

2007-11-19 Thread Chris
Brad wrote: It makes sense, but the Bcc is still not making it through. Try the examples here: http://www.sitepoint.com/article/advanced-email-php They also point out there could be a bug in php mail() where bcc needs to be all caps or all lower. Not sure if the smtp portion is correct

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
To: 'Brad' Cc: php-general@lists.php.net Subject: RE: [PHP] two small issues with php mail Did I miss something or the following line in your code is useless? $smtp = localhost; Brad, if you really need SMTP configuration, and you want to make your life easier with attachments and extra headers, give

Re: [PHP] two small issues with php mail

2007-11-19 Thread Chris
Brad wrote: For the purposes of this task, mailer is not an option. This is a class assignment to put us into the weeds. I am neck deep googling the heck out of this and finding snippets of un-related code which do not fit. Just because you can't use php-mailer in your project doesn't mean you

Re: [PHP] two small issues with php mail

2007-11-19 Thread Casey
, 2007 8:49 PM To: 'Brad' Cc: php-general@lists.php.net Subject: RE: [PHP] two small issues with php mail Did I miss something or the following line in your code is useless? $smtp = localhost; Brad, if you really need SMTP configuration, and you want to make your life easier with attachments

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
Responses like that is encouragement to drop php and move straight to ruby! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 9:07 PM To: Brad Subject: RE: [PHP] two small issues with php mail I'm sorry, but if you have to ask

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
, 2007 9:48 PM To: Brad Cc: Andrés Robinet; php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Note this code is untested and directly typed from a phone. ?php $to = '[EMAIL PROTECTED]'; $subject = 'Free iPod!'; $message = 'Even though I will be filtered, get your FREE

RE: [PHP] two small issues with php mail

2007-11-19 Thread Andrés Robinet
of this list now being a jerk! Brad -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 9:39 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: For the purposes of this task, mailer

Re: [PHP] two small issues with php mail

2007-11-19 Thread Casey
:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 9:48 PM To: Brad Cc: Andrés Robinet; php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Note this code is untested and directly typed from a phone. ?php $to = '[EMAIL PROTECTED]'; $subject = 'Free iPod

Re: [PHP] two small issues with php mail

2007-11-19 Thread Jim Lucas
Brad wrote: It makes sense, but the Bcc is still not making it through. Not sure if the smtp portion is correct either. No parse errors, but no email from the bcc either. ? $email = $_REQUEST['email']; $fromaddress = '[EMAIL PROTECTED]'; $fromname = 'Zone of success Club'; $eol = \r\n; $smtp =