|
Posted by nobrow on 06/15/07 20:39
On Jun 15, 7:27 pm, bill <nob...@spamcop.net> wrote:
> nob...@gmail.com wrote:
> > On Jun 14, 5:22 pm, nob...@gmail.com wrote:
> >> I cannot get php to send an email. This works:
>
> >> $ mail -s "My Subject" nob...@gmail.com
> >> My Message
> >> ^D
> >> Cc:
> >> [enter]
>
> >> But this doesnt:
>
> >> <?php
> >> mail('nob...@gmail.com', 'My Subject', 'My Message')
> >> or
> >> die('shit!');
> >> ?>
>
> >> I don't know where to look for error messages so I have no further
> >> info. Anyone got a clue?
>
> >> P.S.
>
> >> Im using ssmtp, and php.ini contains:
>
> >> sendmail_path =ssmtp
>
> > It works from the interactive php shell, so the conclusion is that
> > this is actually an apache problem, perhaps related to running in a
> > chroot.
>
> working from the command line is invoking the shell's mail, not
> PHP's mail.
BTW, I was talking about it working in "the interactive php shell" ...
$ php -a ...
[Back to original message]
|