On Tue, May 5, 2009 at 1:20 PM, revDAVE <c...@hosting4days.com> wrote:

> [Newbie]
>
> Hi folks,
>
> I'm trying to set up some basic php send mail scripts - and I'm curious of
> the best way to go...
>
>
> I checked these basics out:
>
> http://us.php.net/manual/en/function.mail.php
>
> And got this code below going, but I'll bet I need a bit more - like adding
> authentication - smtp - port - sending user / pass etc.
>
> Any hints how to get this to the next level?
>
> Thanks in advance - dave
>
> --------------------------------
>
> <?php
> $to      = 'nob...@example.com';
> $subject = 'the subject';
> $message = 'hello';
> $headers = 'From: webmas...@example.com' . "\r\n" .
>     'Reply-To: webmas...@example.com' . "\r\n";
>
> mail($to, $subject, $message, $headers);
> ?>
>
>
>
>
> --
> Thanks - RevDave
> Cool @ hosting4days . com
> [db-lists 09]
>
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
use phpmailer or pear mailer

-- 

Bastien

Cat, the other other white meat

Reply via email to