I use MAMP 2.1.1 (not MAMP Pro) on my Mac OS X. I want to write some php code to send out html emails.
I've installed mail, mail_mime, and net_smtp. When I tried the example found on http://pear.php.net/manual/en/package.mail.mail.send.php, I always get "500 Internal Server Error". I checked php_error.log, it says "PHP Fatal error: Class 'Mail' not found". And I tried
<?php
require_once('Mail.php');
var_dump(class_exists('Mail', false));
?>
it returns bool(false) bool(false)
I checked all files and paths, everything seems fine. And I tried the same codes on a ubuntu server, everything is fine.
Could anyone tell me how can I fix this problem?