看一下在Seagull下面,发邮件竟是这么简单,而不必考虑mail后台是什么:
$options = array(
'toEmail' => $conf['email']['info'],
'toRealName' => 'Admin',
'fromEmail' => $oContact->email,
'fromRealName' => $contacterName,
'replyTo' => $oContact->email,
'subject' => 'Contact Enquiry from ' . $conf['site']
['name'],
'type' => $oContact->type,
'body' => $oContact->comment,
'template' => SGL_MOD_DIR . '/' . $this->module . '/
templates/' .
$_SESSION['prefs']['theme'] . '/email_contact_us.php',
);
$message = & new SGL_Emailer($options);
$message->prepare();
return $message->send();