[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 Bla

[PHP] mail() problem

2002-06-05 Thread César L . Aracena
Hi all, I have this strange problem where I can send e-mails from a PHP script to a common e-mail address such as Hotmail's, but I can't send to my ISP-given e-mail address (@infovia.com.ar). Does anyone happen to know why is it that makes it different??? Thanks, Cesar Aracena [EMAIL PROTECTE

[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

[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= 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 the mailserver is separat

[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"; $

[PHP] mail problem...

2001-07-04 Thread php
hai... I have install php and i want to create email direct but when i run my php...but i get error message Warning: Failed to Connect in e:/learn/php/mail.php on line 24 email failed or i need to add object mail in php anyone help me with this... my code like this... ===

[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...

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 a

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] PHP Mail problem

2002-05-23 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 si

Re: [PHP] mail() problem

2002-06-05 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then César L. Aracena declared > I have this strange problem where I can send e-mails from a PHP script to a common >e-mail address such as Hotmail's, but I can't send to my ISP-given e-mail address >(@infovia.com.ar). Does anyone happen

Re: [PHP] mail() problem

2002-06-05 Thread Ivan Hernandez
Cesar: What's the exact error message you are getting? or there's no error message? Are you running the PHP script in a local machine or a server? What MTA are you using? Regards, Ivan --- "César_L._Aracena" <[EMAIL PROTECTED]> wrote: > Hi all, > > I have this strange problem where I can send

Re: [PHP] mail() problem

2002-06-05 Thread Jim lucas
e 05, 2002 9:29 AM Subject: [PHP] mail() problem Hi all, I have this strange problem where I can send e-mails from a PHP script to a common e-mail address such as Hotmail's, but I can't send to my ISP-given e-mail address (@infovia.com.ar). Does anyone happen to know why is it that mak

Re: [PHP] mail() problem

2002-06-05 Thread John Taylor-Johnston
> Yes. I had something similar. Try putting 'Reply-To: [EMAIL PROTECTED]' in > the fourth argument for mail. For some reason some systems balk without > a reply address, I'm not certain why? I questioned my ISP on that. They had something in their sendmail.exe which prevented outgoing mail (scrip

RE: [PHP] mail() problem

2002-06-05 Thread César L . Aracena
Ok. I've done everything that all of you told me to do, but still can't get to send e-mails to my ISP's mail address. I did all of the following: a) Append a Reply-To: [EMAIL PROTECTED] (Actually, it’s [EMAIL PROTECTED] ) b) Send the e-mail to my Hotmail account, but everything seems fine. The a

Re: [PHP] mail() problem

2002-06-05 Thread Manuel Lemos
Hello, On 06/06/2002 12:42 AM, César l . aracena wrote: > Ok. I've done everything that all of you told me to do, but still can't > get to send e-mails to my ISP's mail address. I did all of the > following: > > a) Append a Reply-To: [EMAIL PROTECTED] (Actually, it?s > [EMAIL PROTECTED] ) > b)

Re: [PHP] mail() problem

2002-06-07 Thread Jim lucas
should give you some insight on what is going on with the error messages included in the return mail. Jim Lucas - Original Message - From: "César L. Aracena" <[EMAIL PROTECTED]> To: "PHP General List" <[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 8:42 PM S

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 ... c

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 compl

RE: [PHP] mail() problem

2001-05-19 Thread Craig Vincent
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? The simpliest thing to

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 m

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
y one 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 pro

[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 on behalf of myemai

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 Sola

Re: [PHP] mail problem

2001-09-12 Thread Peter Houchin Sun Rentals STR Manager
TECTED]> >To: 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: &

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 sudd

Re: [PHP] mail problem

2001-09-12 Thread Peter Houchin Sun Rentals STR Manager
TECTED]> >To: 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 probl

Re: [PHP] mail problem

2001-09-12 Thread David Robley
On Thu, 13 Sep 2001 13:43, Peter Houchin Sun Rentals STR Manager wrote: > >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 f

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-Tran

[PHP] mail() problem with email

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: "); mail("fred <[EMAIL PROTECTED]>", "the subject", "message"); ?> On my windows nt server I can only run: I have an error as soon as i use eaml like: mail <[EMAIL PROTECTED]> It is allways the same smtp serv

[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" <[EMA

[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 a