RE: [PHP] using mail() - what is max number of email addresses I can specify in To field?

2003-10-24 Thread Wouter van Vliet
AIL PROTECTED] Sent: Thursday 23 October 2003 06:54 To: John Christopher Cc: [EMAIL PROTECTED] Subject: Re: [PHP] using mail() - what is max number of email addresses I can specify in To field? It really depends on the mta you use... if your going to use mail(); the I would put the list of addresse

Re: [PHP] using mail() - what is max number of email addresses I can specify in To field?

2003-10-22 Thread Rolf Brusletto
It really depends on the mta you use... if your going to use mail(); the I would put the list of addresses in an array and the do foreach($addressArray as $address) { mail($address,'Here is your subject','Here is your content'); } Rolf Brusletto http://www.phpexamples.net John Christopher wrote:

Re: [PHP] using mail() - what is max number of email addresses I can specify in To field?

2003-10-22 Thread Marco Tabini
I'm not sure if you've considered this possibility--but can't you send the messages to one recipient at a time? This way, the problem wouldn't present itself, and the end result would be quite the same (with the added bonus of not having to disclose your entire mailing list to each recipient).

RE: [PHP] using mail()

2003-08-01 Thread Jay Blanchard
[snip] If I am using this code: mail("[EMAIL PROTECTED]", "test", "testbody"); and want to add a From: line, how do I do it? Also, is this an excepted way of sending mail from a web page? [/snip] Read http://us4.php.net/manual/en/function.mail.php Example 2 (How's that Chris?) And yes, it is a

Re: [PHP] Using mail() for mailist list app

2003-01-02 Thread Rick Widmer
At 06:33 PM 1/1/03 -0500, Michael J. Pawlowsky wrote: Personally I simply get the e-mail addresses spit out to me from the database and then I input them into a application made just for bulk mailingt. You can also easily write a quick perl or shell script to send it out from a file of names a

Re: [PHP] Using mail() for mailist list app

2003-01-01 Thread Michael J. Pawlowsky
Personally I simply get the e-mail addresses spit out to me from the database and then I input them into a application made just for bulk mailingt. You can also easily write a quick perl or shell script to send it out from a file of names and this way you can "nice" the process so as not to bo

Re: [PHP] Using mail() for mailist list app

2003-01-01 Thread Justin French
Check the archives... mail() tends to "break" pretty quickly... sometimes on less than 100 personalised emails... The issue ISN'T mail() itself, but things like server timeouts, script timeouts, etc etc. The issue also isn't really HTML mail, but more the fact that each email has to be sent to th

Re: [PHP] using mail() with .info emails?

2002-12-29 Thread Johannes Schlueter
On Sunday 29 December 2002 23:45, Joe Popovich wrote: > Im trying to send email using mail() to a .info email address and get an > error message. I assume the function parses the email address and doesnt > accept anything that isnt the customary .net, .com, etc. addresses. How can > I get around th

Re: [PHP] Using Mail Functions.

2002-01-24 Thread Ben-Nes Michael
Never done this before but its look rather simple: first connect to the server| probobly with imap_open Read the messages into some Variable/ array what ever Upload to the MySQL server. Small Tip: Drom MySQL and use Postgresql -- Canaan Surfing Ltd. Internet Service P

Re: [PHP] using mail

2001-11-12 Thread Jeff Lewis
I COULD be wrong but wasn't Kurt the guy who posted frequent questions like this when he was starting off? :) Jeff - Original Message - From: "Kurt Lieber" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 12, 2001 5:55 PM Subject: Re: [PHP]

RE: [PHP] using mail

2001-11-12 Thread Jason Murray
Web Developer, Melbourne IT "Work now, freak later!" > -Original Message- > From: Brandon Orther [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 13, 2001 9:52 AM > To: PHP User Group > Subject: RE: [PHP] using mail > > > YES I DID READ THE F...in MANUAL &

RE: [PHP] using mail

2001-11-12 Thread Brandon Orther
YES I DID READ THE F...in MANUAL -Original Message- From: Kurt Lieber [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 2:56 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] using mail Did you RTFM? http://www.php.net/manual/en/function.mail.php Just create a variable and input

Re: [PHP] using mail

2001-11-12 Thread Kurt Lieber
Did you RTFM? http://www.php.net/manual/en/function.mail.php Just create a variable and input it as an extra header. $from = "from: [EMAIL PROTECTED]\r\n" ; mail($to,$subject,$message,$from); On Monday 12 November 2001 02:41 pm, you wrote: > Hello, > > I am using the mail() function right now

RE: [PHP] using mail

2001-11-12 Thread Martin Towell
oops, "forst" is meant to be "forth" -Original Message- From: Martin Towell [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 13, 2001 9:44 AM To: 'Brandon Orther'; PHP User Group Subject: RE: [PHP] using mail the forst param to mail is the extra he

RE: [PHP] using mail

2001-11-12 Thread Martin Towell
the forst param to mail is the extra headers to send add in "Reply-To: [EMAIL PROTECTED]\r\n" and/or "From: [EMAIL PROTECTED]\r\n" ( I think this one's correct ) -Original Message- From: Brandon Orther [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 13, 2001 9:41 AM To: PHP User Group