php module to send via SMTP?

php module to send via SMTP?

am 02.11.2007 22:30:52 von unknown

Post removed (X-No-Archive: yes)

Re: php module to send via SMTP?

am 02.11.2007 22:37:35 von carl

still me writes:

> I'm looking for suggestions on sending mail from php (via smtp). I'm a
> php newbie but an experienced programmer. I'm looking to replicate
> some work I've done previously with perl's NET::SMTP.
>
> I only need basic capabilities at this point. I saw a couple of
> approaches after googling but I don't have the experience to
> understand the ups and downs of each.
>
> Thanks for any insight.

It doesn't get much simpler than this (assuming php
is correctly configured):
http://www.php.net/manual/en/function.mail.php
http://php.net/mail/

You might also want to look at:
http://pear.php.net/manual/en/package.mail.mail.intro.php
for more advanced stuff...

Hope that helps.
--

Re: php module to send via SMTP?

am 02.11.2007 22:49:45 von Good Man

Carl wrote in news:uwst072hs.fsf@gmail.com:

> still me writes:
>
>> I'm looking for suggestions on sending mail from php (via smtp). I'm a
>> php newbie but an experienced programmer. I'm looking to replicate
>> some work I've done previously with perl's NET::SMTP.
>>
>> I only need basic capabilities at this point. I saw a couple of
>> approaches after googling but I don't have the experience to
>> understand the ups and downs of each.
>>
>> Thanks for any insight.
>
> It doesn't get much simpler than this (assuming php
> is correctly configured):
> http://www.php.net/manual/en/function.mail.php
> http://php.net/mail/

actually, i find this much simpler and way more powerful with little
configuration changes:

http://phpmailer.sourceforge.net/

Re: php module to send via SMTP?

am 03.11.2007 03:46:16 von Shelly

Good Man wrote:
> Carl wrote in news:uwst072hs.fsf@gmail.com:
>
>> still me writes:
>>
>>> I'm looking for suggestions on sending mail from php (via smtp).
>>> I'm a php newbie but an experienced programmer. I'm looking to
>>> replicate some work I've done previously with perl's NET::SMTP.
>>>
>>> I only need basic capabilities at this point. I saw a couple of
>>> approaches after googling but I don't have the experience to
>>> understand the ups and downs of each.
>>>
>>> Thanks for any insight.
>>
>> It doesn't get much simpler than this (assuming php
>> is correctly configured):
>> http://www.php.net/manual/en/function.mail.php
>> http://php.net/mail/
>
> actually, i find this much simpler and way more powerful with little
> configuration changes:
>
> http://phpmailer.sourceforge.net/

google htmlMimeMail It has an smtp capability and is easy to use.

-- Shelly