[PHP] PHP Mail problem

2002-05-24 Thread Manisha
Hi, I am doing email blast program. I wanted to blast 100 emails. For testing purpose (I wanted to test how much time it takes), I blasted all 100 to my account (That too twice) I received almost 100 over mails, but later on received - quota over - error. Now the problem is I can not get a

[PHP] Re: PHP Mail problem

2002-05-24 Thread Michael Virnstein
refer to the manual of your email server and check for quota settings. You obviously reached the quota limit there and now you're not allowed to send any data, until the quota is reset. This may be on a daily or monthly basis or perhaps you have to do it manually. Regards Michael Manisha [EMAIL

[PHP] mail() problem with email mail@dom.com

2002-04-29 Thread fred
Hello, I have a pb with mail() function. my script run ok on a linux but not on a nt: ? ini_set(SMTP, 192.168.0.126); ini_set(sendmail_from, info [EMAIL PROTECTED]); mail(fred [EMAIL PROTECTED], the subject, message); ? On my windows nt server I can only run: ? ini_set(SMTP, 192.168.0.126);

[PHP] mail() problem...

2002-04-03 Thread Jack Davis
I wrote a small piece of code to take a text file with a list of email addresses in it one per line and send out an email to each of them like so... $headers = From: [EMAIL PROTECTED]\r\n; $headers .= Reply-To: [EMAIL PROTECTED]\r\n; $message = Blah Blah Blah;

RE: [PHP] mail() problem...

2002-04-03 Thread Rick Emery
$arrText[$i] still contains the new-line character at the end. Is that harmful here? -Original Message- From: Jack Davis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 3:16 PM To: [EMAIL PROTECTED] Subject: [PHP] mail() problem... I wrote a small piece of code to take

Re: [PHP] mail() problem...

2002-04-03 Thread Miguel Cruz
On Wed, 3 Apr 2002, Jack Davis wrote: mail($arrText[$i], $subject, $message, $headers); mail (trim($arrText[$i]), $subject, $message, $headers); miguel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail problem (reading mail from a pop3 server)

2001-10-05 Thread Nikola Veber
Hi ! I would like to add an option for reading e-mail from the pop3 server to my site. Is this possible at all ? Thanks Nikola -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] mail problem

2001-09-13 Thread Peter Houchin Sun Rentals STR Manager
From: David Robley [EMAIL PROTECTED] To: Peter Houchin Sun Rentals STR Manager [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: [PHP] mail problem Date: Thu, 13 Sep 2001 14:51:36 +0930 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Mozilla-Status

[PHP] mail problem

2001-09-12 Thread Peter Houchin Sun Rentals STR Manager
hiya I have several scripts that send mail from web pages made in php.. now these pages all work fine. now all of a sudden php has stopped sending mail and I don't know why System info Unix box running Solaris 2.6 apache 1.3.12 php 4.0.4pl1 using sendmail for the emails php.ini mail related

Re: [PHP] mail problem

2001-09-12 Thread David Robley
On Thu, 13 Sep 2001 12:04, Peter Houchin Sun Rentals STR Manager wrote: hiya I have several scripts that send mail from web pages made in php.. now these pages all work fine. now all of a sudden php has stopped sending mail and I don't know why System info Unix box running Solaris 2.6

Re: [PHP] mail problem

2001-09-12 Thread Peter Houchin Sun Rentals STR Manager
[EMAIL PROTECTED], [EMAIL PROTECTED] Date: Thu, 13 Sep 2001 12:17:12 +0930 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PHP] mail problem X-Mozilla-Status: X-Mozilla-Status2: X-UIDL: a89ffd79c7882d9be6397af7041f38b1 On Thu, 13 Sep 2001 12:04, Peter Houchin Sun Rentals

Re: [PHP] mail problem

2001-09-12 Thread David Robley
On Thu, 13 Sep 2001 13:10, Peter Houchin Sun Rentals STR Manager wrote: On Thu, 13 Sep 2001 12:04, Peter Houchin Sun Rentals STR Manager wrote: hiya I have several scripts that send mail from web pages made in php.. now these pages all work fine. now all of a sudden php has stopped

Re: [PHP] mail problem

2001-09-12 Thread Peter Houchin Sun Rentals STR Manager
[EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] Date: Thu, 13 Sep 2001 13:28:27 +0930 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PHP] mail problem X-Mozilla-Status: X-Mozilla-Status2: X-UIDL: b7314ef2bee84cb807f95a04acc39a3d On Thu, 13 Sep

Re: [PHP] mail problem

2001-09-12 Thread David Robley
On Thu, 13 Sep 2001 13:43, Peter Houchin Sun Rentals STR Manager wrote: SNIP headers: didja know dtmail was putting them in? On Thu, 13 Sep 2001 13:10, Peter Houchin Sun Rentals STR Manager wrote: On Thu, 13 Sep 2001 12:04, Peter Houchin Sun Rentals STR Manager wrote: hiya I have

[PHP] PHP Mail() Problem

2001-08-14 Thread Mahmoud Kassem
When I send an email using mail() I can the emails from nobody (using outlook) and in some programs like AOL from Unknown and in Web Based Emails like Yahoo I get it Correct and in Outlook Express also correct How can I fix this problem ? After some tests I found out Nobody nobody@servername

Re: [PHP] mail problem...

2001-07-04 Thread Ivan Balazs
Hi! It seems to be a php-specific problem. Check your php config file (in php4 it is php.ini). There you should find a line related to the smtp server. Fill it with its correct content. Balazs On Wed, 4 Jul 2001, php wrote: hai... I have install php and i want to create email direct

Fw: [PHP] mail problem...

2001-07-04 Thread php
help me...? - Original Message - From: Ivan Balazs [EMAIL PROTECTED] To: php [EMAIL PROTECTED] Cc: Php Mailing List [EMAIL PROTECTED] Sent: Wednesday, July 04, 2001 6:52 PM Subject: Re: [PHP] mail problem... Hi! It seems to be a php-specific problem. Check your php config file (in php4

[PHP] mail() problem

2001-05-19 Thread Mark Wouters
Hi, Below the code i use. Everything works, the $mailto variable is buils up from a database and contains more then one email adresses. Now my question: how can i make the receivers of my message NOT to see the email addresses of all the receivers, so then can't reply to all? $mail =$mailto;

RE: [PHP] mail() problem

2001-05-19 Thread Craig Vincent
snip Below the code i use. Everything works, the $mailto variable is buils up from a database and contains more then one email adresses. Now my question: how can i make the receivers of my message NOT to see the email addresses of all the receivers, so then can't reply to all? /snip The

Re: [PHP] mail() problem

2001-05-19 Thread Urb LeJeune
Below the code i use. Everything works, the $mailto variable is buils up from a database and contains more then one email adresses. Now my question: how can i make the receivers of my message NOT to see the email addresses of all the receivers, so then can't reply to all? Send the

[PHP] mail() problem

2001-03-14 Thread Vegard
I have php4 and Apache running on Windows 2000, and Im not able to get the mail-function to work. The mailsystem is on an other PC, and so I added SMTP=mailservers IP-address in the php.ini file. But still I get "Failed to connect" when I run mail(). I have heard that there can be a problem if

RE: [PHP] mail problem

2001-03-05 Thread Peter Houchin
Now if i include $headers .= "Cc: [EMAIL PROTECTED] " . " , "; $headers .= "[EMAIL PROTECTED]\n"; My page won't load at all apart from the first include i have on my page.. does any one have any idea's? Hiya, am near

[PHP] mail problem

2001-03-04 Thread Peter Houchin
Hiya, am near completeion of a site only i can't get any mail to send to multiple recipients at all .. either in the "To:" section or having on email in "To" and one email address in "CC" section.. and i need to be able to do this ... can any one offer any suggestions ...( I'd prefer to have

Re: [PHP] mail problem

2001-03-04 Thread David Robley
On Mon, 5 Mar 2001 14:17, Peter Houchin wrote: Hiya, am near completeion of a site only i can't get any mail to send to multiple recipients at all .. either in the "To:" section or having on email in "To" and one email address in "CC" section.. and i need to be able to do this ... can

<    1   2