php module to send via SMTP?
am 02.11.2007 22:30:52 von unknownPost removed (X-No-Archive: yes)
Post removed (X-No-Archive: yes)
still me
> 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.
--
Carl
> still me
>
>> 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/
Good Man wrote:
> Carl
>
>> still me
>>
>>> 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