How to setup an SMTP server on Mac OS X?
问题 I work with PHP and I have mamp on my machine. I would like to send emails within my PHP code: <?php $to = "recipient@example.com"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; if (mail($to, $subject, $body)) { echo("<p>Message successfully sent!</p>"); } else { echo("<p>Message delivery failed...</p>"); } ?> How can I configure a mail server for free on my mac machine ? 回答1: The following did the job. See source here. Edit file: sudo emacs /System/Library/LaunchDaemons/org.postfix.master