|
我是像如下配置的:
// SMTP server Configuration ("localhost" is enough in the most cases)
$g_smtp_host = 'pop3.mycompany.com'; # SMTP server MUST BE configured
# Configure using custom_config.inc.php
$g_tl_admin_email = 'fanyang@mycompany.com'; # for problem/error notification
$g_from_email = 'fanyang@mycompany.com'; # email sender
$g_return_path_email = 'fanyang@mycompany.com';
# Urgent = 1, Not Urgent = 5, Disable = 0
// $g_mail_priority = 5;
# Taken from mantis for phpmailer config
#define ("SMTP_SEND",2);
#$g_phpMailer_method = SMTP_SEND;
// Configure only if SMTP server requires authentication
$g_smtp_username = 'bestrick@mycompany.com'; # user
$g_smtp_password = 'mypassword'; # password
// |
|