RE: [PHP] Mail Function Problem

2010-04-13 Thread Ashley Sheridan
On Tue, 2010-04-13 at 08:59 -0400, Alice Wei wrote: > > Subject: RE: [PHP] Mail Function Problem > From: a...@ashleysheridan.co.uk > To: aj...@alumni.iu.edu > CC: k...@daleco.biz; a.bovane...@gmail.com; php-general@lists.php.net > Date: Tue, 13 Apr 2

RE: [PHP] Mail Function Problem

2010-04-13 Thread Alice Wei
Subject: RE: [PHP] Mail Function Problem From: a...@ashleysheridan.co.uk To: aj...@alumni.iu.edu CC: k...@daleco.biz; a.bovane...@gmail.com; php-general@lists.php.net Date: Tue, 13 Apr 2010 13:19:15 +0100 On Mon, 2010-04-12 at 12:25 -0400, Alice Wei wrote: > Date: Mon, 12

RE: [PHP] Mail Function Problem

2010-04-13 Thread Ashley Sheridan
On Mon, 2010-04-12 at 12:25 -0400, Alice Wei wrote: > > > > > > > Date: Mon, 12 Apr 2010 11:09:42 -0500 > > From: k...@daleco.biz > > To: aj...@alumni.iu.edu > > CC: a.bovane...@gmail.com; php-general@lists.php.net > > Subject: Re: [PHP] M

Re: [PHP] Mail Function Problem

2010-04-12 Thread kranthi
when you install pear package Mail a file called Mail.php will be installed into C:/xampp/php/PEAR >> Mail.php contains the class Mail. So getting a "class not found" error is >> not possible.. are you sure you are doing require_once 'Mail.php' ? -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Mail Function Problem

2010-04-12 Thread Karl DeSaulniers
; . "\r\n"; $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n"; Karl On Apr 12, 2010, at 10:24 PM, Alice Wei wrote: From: kranthi...@gmail.com Date: Tue, 13 Apr 2010 07:41:19 +0530 Subject: Re: [PHP] Mail Function Problem To: aj...@alumni.iu.edu CC: k...@d

RE: [PHP] Mail Function Problem

2010-04-12 Thread Alice Wei
> From: kranthi...@gmail.com > Date: Tue, 13 Apr 2010 07:41:19 +0530 > Subject: Re: [PHP] Mail Function Problem > To: aj...@alumni.iu.edu > CC: k...@daleco.biz; php-general@lists.php.net > > thats weired... > Mail.php contains the class Mail. So getting a "cl

Re: [PHP] Mail Function Problem

2010-04-12 Thread kranthi
thats weired... Mail.php contains the class Mail. So getting a "class not found" error is not possible... (require_once stops the script in case it can't find Mail.php) >> Do I need to move the Mail PEAR class to the same folder as my web folder ensure that C:/xampp/php/PEAR folder is added to your

RE: [PHP] Mail Function Problem

2010-04-12 Thread Alice Wei
> Date: Mon, 12 Apr 2010 15:54:05 -0500 > From: k...@daleco.biz > To: kranthi...@gmail.com > CC: aj...@alumni.iu.edu; php-general@lists.php.net > Subject: Re: [PHP] Mail Function Problem > > kranthi wrote: > > PEAR's mail package does support authenticatio

Re: [PHP] Mail Function Problem

2010-04-12 Thread Karl DeSaulniers
who succeeded with using PEAR on PHP can guide me on a good tutorial to read? Thanks for your help. Alice Date: Mon, 12 Apr 2010 15:54:05 -0500 From: k...@daleco.biz To: kranthi...@gmail.com CC: aj...@alumni.iu.edu; php-general@lists.php.net Subject: Re: [PHP] Mail Function Problem kranthi

RE: [PHP] Mail Function Problem

2010-04-12 Thread Alice Wei
. Has anyone who succeeded with using PEAR on PHP can guide me on a good tutorial to read? Thanks for your help. Alice > Date: Mon, 12 Apr 2010 15:54:05 -0500 > From: k...@daleco.biz > To: kranthi...@gmail.com > CC: aj...@alumni.iu.edu; php-general@lists.php.net > Subject: Re:

Re: [PHP] Mail Function Problem

2010-04-12 Thread Kevin Kinsey
kranthi wrote: PEAR's mail package does support authentication. http://email.about.com/od/emailprogrammingtips/qt/PHP_Email_SMTP_Authentication.htm I will say "mea culpa" on this one; apparently I didn't dig deep enough into the PEAR docs to figure this out. It's certainly not mentioned on the

Re: [PHP] Mail Function Problem

2010-04-12 Thread kranthi
PEAR's mail package does support authentication. http://email.about.com/od/emailprogrammingtips/qt/PHP_Email_SMTP_Authentication.htm In case you get a "Sent Successfully" message (but didn't get a mail in your inbox or spam folder) there is a problem with your SMTP server configuration. And >> The

RE: [PHP] Mail Function Problem

2010-04-12 Thread Teus Benschop
On Mon, 2010-04-12 at 12:58 -0400, Alice Wei wrote: > Hi, > > I found an article on the item you described. > http://www.talkphp.com/vbarticles.php?do=article&articleid=51&title=sending-emails-with-the-zend-framework, > but I am using Windows on my PHP. Would this still work? Looks like the >

RE: [PHP] Mail Function Problem

2010-04-12 Thread Alice Wei
> Date: Mon, 12 Apr 2010 11:09:42 -0500 > From: k...@daleco.biz > To: aj...@alumni.iu.edu > CC: a.bovane...@gmail.com; php-general@lists.php.net > Subject: Re: [PHP] Mail Function Problem > > Alice Wei wrote: > >> Hi! > >> You have the follow

Re: [PHP] Mail Function Problem

2010-04-12 Thread Kevin Kinsey
Alice Wei wrote: Hi! You have the following php.ini params:SMTP = smtp.live.com smtp_port = 587 live.com not support relay and it requires authentication. Is there an email account that I could try? I thought > most email accounts requires authentication anyway. Well, "therein lies the rub,

RE: [PHP] Mail Function Problem

2010-04-12 Thread Alice Wei
Date: Mon, 12 Apr 2010 15:26:46 +0400 Subject: Re: [PHP] Mail Function Problem From: a.bovane...@gmail.com To: aj...@alumni.iu.edu CC: php-general@lists.php.net Hi! You have the following php.ini params:SMTP = smtp.live.com smtp_port = 587 live.com not support relay and it requires

Re: [PHP] Mail Function Problem

2010-04-12 Thread Alexey Bovanenko
Hi! You have the following php.ini params: SMTP = smtp.live.com smtp_port = 587 live.com not support relay and it requires authentication. On Mon, Apr 12, 2010 at 6:33 AM, Alice Wei wrote: > > Hi, > > I have an issue here where I see no PHP errors on my mail function usage, > and yet I am not

RE: [PHP] Mail Function Problem

2010-04-12 Thread Alice Wei
> From: peter.e.l...@gmail.com > Date: Mon, 12 Apr 2010 13:09:48 +0200 > Subject: Re: [PHP] Mail Function Problem > To: k...@daleco.biz > CC: aj...@alumni.iu.edu; php-general@lists.php.net > > On 12 April 2010 05:22, Kevin Kinsey wrote: > > > > Thanks to th

Re: [PHP] Mail Function Problem

2010-04-12 Thread Peter Lind
On 12 April 2010 05:22, Kevin Kinsey wrote: > > Thanks to the worldwide brotherhood of crooks known as spammers, > sending e-mail these days isn't nearly as easy as PHP makes it look. > You might wanna look into an "errors-to" header to help debug any > problems with sender authorization, bad port

Re: [PHP] Mail Function Problem

2010-04-11 Thread Kevin Kinsey
Alice Wei wrote: Hi, I have an issue here where I see no PHP errors on my mail > function usage, and yet I am not getting the mail in the > desired account. Here is what I have for my PHP code: $headers = "From: aj...@alumni.iu.edu"; $to = "aj...@alumni.iu.edu "; $subject = "Comments Regardi

[PHP] Mail Function Problem

2010-04-11 Thread Alice Wei
Hi, I have an issue here where I see no PHP errors on my mail function usage, and yet I am not getting the mail in the desired account. Here is what I have for my PHP code: $headers = "From: aj...@alumni.iu.edu"; $to = "aj...@alumni.iu.edu "; $subject = "Comments Regarding My Studio"; $body =

Re: [PHP] mail function problem

2007-07-05 Thread Daniel Brown
On 7/5/07, Tijnema <[EMAIL PROTECTED]> wrote: he's running it on the web, as the CLI worked ;) Yeah, I knew it was mentioned before, but I couldn't remember. I think I have early-onset Alzheimer's. -- Daniel P. Brown [office] (570-) 587-7080 Ext. 272 [mobile] (570-) 766-8107 -- PHP Genera

Re: [PHP] mail function problem

2007-07-05 Thread Tijnema
On 7/5/07, Daniel Brown <[EMAIL PROTECTED]> wrote: On 7/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Chris a écrit : > > web2 wrote: > >> Chris a écrit : > >>> > > Try this: > > > $email = "[EMAIL PROTECTED]"; > > $headers = "From: ".$email."\r\n"; > > $headers .= "X

Re: [PHP] mail function problem

2007-07-05 Thread Daniel Brown
On 7/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Chris a écrit : > web2 wrote: >> Chris a écrit : >>> > Try this: > $email = "[EMAIL PROTECTED]"; > $headers = "From: ".$email."\r\n"; > $headers .= "X-Mailer: PHP/".phpversion()."\r\n"; > if(mail("[EMAIL PROTECTED]"

Re: [PHP] mail function problem

2007-07-05 Thread web2
Chris a écrit : web2 wrote: Chris a écrit : Try this: Note Same result : "NOK /usr/lib/sendmail -t -i" I think the problem is not in the test script. Is that the right path? Normally it's /usr/sbin/sendmail not /usr/lib . Yes, /usr/sbin/sendmail is a link to /usr/lib/sendmail. I

Re: [PHP] mail function problem

2007-07-04 Thread Chris
web2 wrote: Chris a écrit : Try this: Note Same result : "NOK /usr/lib/sendmail -t -i" I think the problem is not in the test script. Is that the right path? Normally it's /usr/sbin/sendmail not /usr/lib . Yes, /usr/sbin/sendmail is a link to /usr/lib/sendmail. I've made tests an

Re: [PHP] mail function problem

2007-07-04 Thread web2
Chris a écrit : Try this: Note Same result : "NOK /usr/lib/sendmail -t -i" I think the problem is not in the test script. Is that the right path? Normally it's /usr/sbin/sendmail not /usr/lib . Yes, /usr/sbin/sendmail is a link to /usr/lib/sendmail. I've made tests and with the ph

Re: [PHP] mail function problem

2007-07-03 Thread Chris
Try this: Note Same result : "NOK /usr/lib/sendmail -t -i" I think the problem is not in the test script. Is that the right path? Normally it's /usr/sbin/sendmail not /usr/lib . -- Postgresql & php tutorials http://www.designmagick.com/ -- PHP General Mailing List (http://www.php.ne

Re: [PHP] mail function problem

2007-07-03 Thread web2
Daniel Brown a écrit : On 7/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Daniel Brown a écrit : > On 7/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >> I've already checked : >> >> - the mail logs : no mail send >> >> - and the apache error and access logs : nothing except this : >> >

Re: [PHP] mail function problem

2007-07-02 Thread Daniel Brown
On 7/2/07, Daniel Brown <[EMAIL PROTECTED]> wrote: {snip} Note Sorry, hit the button before I was done typing. Note the trailing \r\n after the X-Mailer line as well. -- Daniel P. Brown [office] (570-) 587-7080 Ext. 272 [mobile] (570-) 766-8107 -- PHP General Mailing List (http://w

Re: [PHP] mail function problem

2007-07-02 Thread Daniel Brown
On 7/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Daniel Brown a écrit : > On 7/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >> I've already checked : >> >> - the mail logs : no mail send >> >> - and the apache error and access logs : nothing except this : >> >> 192.168.0.1 - - [02/Ju

Re: [PHP] mail function problem

2007-07-02 Thread web2
Daniel Brown a écrit : On 7/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I've already checked : - the mail logs : no mail send - and the apache error and access logs : nothing except this : 192.168.0.1 - - [02/Jul/2007:14:07:22 +0200] "GET /~ee/mail.php HTTP/1.1" 200 49291 "-" "Mozi

Re: [PHP] mail function problem

2007-07-02 Thread Daniel Brown
On 7/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I've already checked : - the mail logs : no mail send - and the apache error and access logs : nothing except this : 192.168.0.1 - - [02/Jul/2007:14:07:22 +0200] "GET /~ee/mail.php HTTP/1.1" 200 49291 "-" "Mozilla/5.0 (Windows; U; Win

Re: [PHP] mail function problem

2007-07-02 Thread web2
I've already checked : - the mail logs : no mail send - and the apache error and access logs : nothing except this : 192.168.0.1 - - [02/Jul/2007:14:07:22 +0200] "GET /~ee/mail.php HTTP/1.1" 200 49291 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1.4) Gecko/20070515 Firefox/2.0

Re: [PHP] mail function problem

2007-07-01 Thread Chris
[EMAIL PROTECTED] wrote: Hi, I'm running PHP 5.2.3 on Solaris 10 (AMD64). My mail function doesn't send any mail, the return value of mail function is false... But sendmail_path value is OK in php.ini, and I've tried to send a mail with sendmail on console with the same user (the apache user)

[PHP] mail function problem

2007-06-29 Thread web2
Hi, I'm running PHP 5.2.3 on Solaris 10 (AMD64). My mail function doesn't send any mail, the return value of mail function is false... But sendmail_path value is OK in php.ini, and I've tried to send a mail with sendmail on console with the same user (the apache user), and everything's ok...

Re: [PHP] mail() function problem

2004-09-02 Thread Dre
I'm developing uner Windows at home .. but I'm pretty sure that my host is running Unix or Unix like systems on their machines "Pahlevanzadeh Mohsen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Please install a mailserver until your SMTP server > will be up. > When your SMTP ser

Re: [PHP] mail() function problem

2004-09-01 Thread James Kaufman
On Wed, Sep 01, 2004 at 06:09:04PM +0300, Dre wrote: > Hi > I was trying to use the mail() function, but it did not work, maybe because > of some settings problem or something that I can't figure out > > I went online and tried to execute the following > //=

Re: [PHP] mail() function problem

2004-09-01 Thread Pahlevanzadeh Mohsen
Please install a mailserver until your SMTP server will be up. When your SMTP server is down,mail func doesn't work. My suggesstion: Please work under UNIX systems. Yours,Mohsen --- Dre <[EMAIL PROTECTED]> wrote: > Hi > I was trying to use the mail() function, but it did > not work, maybe because

[PHP] mail() function problem

2004-09-01 Thread Dre
Hi I was trying to use the mail() function, but it did not work, maybe because of some settings problem or something that I can't figure out I went online and tried to execute the following //=== //=

[PHP] mail() function problem

2004-09-01 Thread Dre
Hi I was trying to use the mail() function, but it did not work, maybe because of some settings problem or something that I can't figure out I went online and tried to execute the following //=== //=

[PHP] Mail function problem

2004-01-10 Thread Rolf Berkenbosch
Hi All, I have a big problem with the mail function in PHP. I have installed PHP 4.3.3. But no email where send With the mail function. If I run this script as root. There Is no problem.. What do I need to change?? Thanks, Rolf

Re: [PHP] mail function problem

2003-05-31 Thread Michael Geier
changing the value in the php.ini file is not the ideal option, as it screws things up for all of users/scripts on the server. you could use ini_set() for the script to change the sendmail_path var for that script. you could use a mail class that does alot of the grunt work for you (Manuel Lemos

Re: [PHP] mail function problem

2003-05-30 Thread David Grant
Bersani Francesco wrote: Hi, I have a problem with the "mail" function; it always sends mails assuming in the "from" field the user "[EMAIL PROTECTED]". I tried to override it with this code: mail($email, $subject, $message, $headers); ?> -- It doesn't work... C

[PHP] mail function problem

2003-05-30 Thread Bersani Francesco
Hi, I have a problem with the "mail" function; it always sends mails assuming in the "from" field the user "[EMAIL PROTECTED]". I tried to override it with this code: mail($email, $subject, $message, $headers); ?> -- It doesn't work... Can anybody help me ?

Re: [PHP] Mail() function problem

2002-09-11 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Hi, > > does that mean I can do nothing about it? > > Alva > > "Pekka Saarinen" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > At 9/10/2002, you wrote: > > >Hi Everyone, > > > > > >I did a simp

Re: [PHP] Mail() function problem

2002-09-11 Thread Alva Chew
Hi, does that mean I can do nothing about it? Alva "Pekka Saarinen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > At 9/10/2002, you wrote: > >Hi Everyone, > > > >I did a simple test with this script: > > > > >mail("[EMAIL PROTECTED]", "test", "this is a tes

Re: [PHP] Mail() function problem

2002-09-10 Thread Pekka Saarinen
At 9/10/2002, you wrote: >Hi Everyone, > >I did a simple test with this script: > >mail("[EMAIL PROTECTED]", "test", "this is a test mail"); >echo "done"; >?> > >I run the script from web accounts on different servers. I can receive the >test mail from some but not from others. Is there any config

[PHP] Mail() function problem

2002-09-10 Thread Alva Chew
Hi Everyone, I did a simple test with this script: I run the script from web accounts on different servers. I can receive the test mail from some but not from others. Is there any configurations that I am missing here? Thanks and regards. -- Alva Chew Stridec Systems mobile: +65 9144-8023 ema

Re: [PHP] mail() function problem

2002-09-02 Thread Manuel Lemos
Hello, On 09/03/2002 12:38 AM, Akhmad D. Sembiring wrote: > # > thanks for your kind helps, > # > but the problem still exists. > # > > # > the actual problem is that the 2nd mail() function > # > does not ever send the mail, no matter what the destination > # > and the additional hea

RE: [PHP] mail() function problem

2002-09-02 Thread Akhmad D. Sembiring
# On 09/03/2002 12:19 AM, Akhmad D. Sembiring wrote: # > Dear Arul & friends, # > # > thanks for your kind helps, # > but the problem still exists. # > # > the actual problem is that the 2nd mail() function # > does not ever send the mail, no matter what the destination # > and the addi

Re: [PHP] mail() function problem

2002-09-02 Thread Manuel Lemos
Hello, On 09/03/2002 12:19 AM, Akhmad D. Sembiring wrote: > Dear Arul & friends, > > thanks for your kind helps, > but the problem still exists. > > the actual problem is that the 2nd mail() function > does not ever send the mail, no matter what the destination > and the additional header is. >

RE: [PHP] mail() function problem

2002-09-02 Thread Akhmad D. Sembiring
inal Message- # From: Arul Venkatesh Kandaswamy [mailto:[EMAIL PROTECTED]] # Sent: Saturday, August 31, 2002 17:07 # To: Akhmad D. Sembiring # Subject: Re: [PHP] mail() function problem # # # Hello # # $from = "MIME-Version: 1.0\r\n"; # $from .= "Content-type: text/htm

RE: [PHP] mail() function problem

2002-08-31 Thread Dave at Sinewaves.net
; [EMAIL PROTECTED] Subject: Re: [PHP] mail() function problem I think mailing list managers like Yahoo, ezmlm, etc all have "features" in them to suspect bots and programs from subscribing/posting to the groups. I know I've had trouble subscribing/posting to groups managed by ezm

Re: [PHP] mail() function problem

2002-08-31 Thread Justin French
I think mailing list managers like Yahoo, ezmlm, etc all have "features" in them to suspect bots and programs from subscribing/posting to the groups. I know I've had trouble subscribing/posting to groups managed by ezmlm... Probably there is a header or two that PHP automatically sets which make

[PHP] mail() function problem

2002-08-31 Thread Akhmad D. Sembiring
Dear All, I have a little problem with mail() function, PHP Code: -- mail($email, "Membership ok", $themsg, "From: [EMAIL PROTECTED]\r\n"); mail("[EMAIL PROTECTED]", "", "", "From: $email\r\n"); -- Why does the second mai

Re: [PHP] PHP - mail() function problem

2002-08-17 Thread N. Pari Purna Chand
- From: "Jason Wong" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, August 17, 2002 11:49 PM Subject: Re: [PHP] PHP - mail() function problem > On Saturday 17 August 2002 21:08, N. Pari Purna Chand wrote: > > Hi guys, > > > > I am facin

Re: [PHP] PHP - mail() function problem

2002-08-17 Thread N. Pari Purna Chand
- From: "Jason Wong" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, August 17, 2002 11:49 PM Subject: Re: [PHP] PHP - mail() function problem > On Saturday 17 August 2002 21:08, N. Pari Purna Chand wrote: > > Hi guys, > > > > I am facin

Re: [PHP] PHP - mail() function problem

2002-08-17 Thread Jason Wong
On Saturday 17 August 2002 21:08, N. Pari Purna Chand wrote: > Hi guys, > > I am facing a strange problem, > php's mail() function is not working when a php page is executed thru > apache, > but the same page which has mail() function is working fine and is sending > mails > when php is used as a

[PHP] PHP - mail() function problem

2002-08-17 Thread N. Pari Purna Chand
Hi guys, I am facing a strange problem, php's mail() function is not working when a php page is executed thru apache, but the same page which has mail() function is working fine and is sending mails when php is used as a scripting language in shell. I'm using xmail's sendmail and xmail as MTA on

Re: [PHP] Mail() function problem

2002-07-02 Thread Jason Wong
On Wednesday 03 July 2002 00:52, Balaji Ankem wrote: > I am using the SMTP server which needs authentication. I don't think the built-in mail command handles authentication. Google > php smtp auth that should point you in the right direction. -- Jason Wong -> Gremlins Associates -> www.grem

[PHP] Mail() function problem

2002-07-02 Thread Balaji Ankem
Hi friend, I am using the SMTP server which needs authentication. When I use mail([EMAIL PROTECTED],"Thanks for visiting","From:[EMAIL PROTECTED]"); I am getting server error on the line which is having this mail function. How can I resolve this problem? Php.ini settings =

[PHP] Re: !!! URGENT [PHP] php mail() function Problem

2001-10-19 Thread Yasuo Ohgaki
If your sendmail is set up correctly, you should be able to send mail. Check your sendmail. Look for sendmail Manul, FAQ, etc, since it's not PHP problem. -- Yasuo Ohgaki Simos Varelakis wrote: > Hi to everyone > > i have problem with php4 mail() function. > > Os:mandrake 7.2 Mailprog:Sendm

[PHP] !!! URGENT [PHP] php mail() function Problem

2001-10-18 Thread Simos Varelakis
Hi to everyone i have problem with php4 mail() function. Os:mandrake 7.2 Mailprog:Sendmail the following php code does not send e-mail my /var/log/mail/info files log the following thewall sendmail[8313]: f9HAE9I08313: from=apache, size=0, class=0, nrcpts=0, relay=apache@localhost my php.

[PHP] mail function problem

2001-07-27 Thread Emiliano Marmonti
Dears: I have a problem using mail function under the default IIS's SMTP. Appears an error, something like: Unknown error in line 3 Line 3 only have the instruction mail ("[EMAIL PROTECTED]","[TEST] Hola","Mensaje de Prueba"). I have tested the use of this function using another