Why php mail() require mail program like sendmail/postfix/etc.. for sending emails? I asking because sending email is client action and not something that need to run server.


Edit:

why is soo complicated to create native php mail function without need to install sendmail/postfix/etc.. program that have over functionality as server that can get requests and not just send email as client.

Thanks, Yosef

link|improve this question

PHP is the client! It just does not talk SMTP with the server. – rik Feb 16 '11 at 22:04
if php is the client, why we need sendmail program? – Yosef Feb 16 '11 at 23:10
feedback

4 Answers

up vote 1 down vote accepted

The reason is because the mail() function is not an MTA, only a "encoder" for the actual MTA.

Why not? I believe it would be unpractical to implement a decent and secure MTA setup with PHP alone.

EDIT: What exactly does an MTA?

link|improve this answer
feedback

Most likely: sendmail existed before PHP's mail(), so in the true spirit of *nix:

Why re-create functionality when it already exists on the CLI?

link|improve this answer
because sendmail server and not just client – Yosef Feb 16 '11 at 22:34
feedback

PHP doesn't send mail itself, but delegates to another program to send mail for it.

You can get around this restriction by using the PEAR Mail package instead, which has SMTP support.

link|improve this answer
1  
Thanks, But I asked why and not How.(I use Zend_Mail) – Yosef Feb 16 '11 at 22:35
feedback

The reason you want to hand the mail off to something else is that Mail is a complicated beast that is best deferred to something better designed to handle that.

A simple case is when you mail something to a server that is offline. It's "OK" for a mail server to go offline, there's built in logic to retry message sends in the operations of the mail servers. But if you simply open up an SMTP socket and start barking protocol, and it fails, then you've lost that queueing capability that you get "for free" with the mail servers.

Mail is just one of those things best delegated to those ancient systems that have all of the lore and details coded in to them over years of painful interoperability testing and implementation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.