| | |
| | | */ |
| | | function smtp_mail($from, $recipients, &$headers, &$body, &$response) |
| | | { |
| | | global $SMTP_CONN, $CONFIG; |
| | | global $SMTP_CONN, $CONFIG, $RCMAIL; |
| | | $smtp_timeout = null; |
| | | $smtp_host = $CONFIG['smtp_server']; |
| | | $smtp_port = is_numeric($CONFIG['smtp_port']) ? $CONFIG['smtp_port'] : 25; |
| | |
| | | // create Net_SMTP object and connect to server |
| | | if (!is_object($SMTP_CONN)) |
| | | { |
| | | $helo_host = empty($CONFIG['smtp_helo_host']) ? (empty($_SERVER['SERVER_NAME']) ? 'localhost' : $_SERVER['SERVER_NAME']) : $CONFIG['smtp_helo_host']; |
| | | if (!empty($CONFIG['smtp_helo_host'])) |
| | | $helo_host = $CONFIG['smtp_helo_host']; |
| | | else if (!empty($_SERVER['SERVER_NAME'])) |
| | | $helo_host = preg_replace('/:\d+$/', '', $_SERVER['SERVER_NAME']); |
| | | else |
| | | $helo_host = 'localhost'; |
| | | |
| | | $SMTP_CONN = new Net_SMTP($smtp_host, $smtp_port, $helo_host); |
| | | |
| | | // set debugging |
| | | if ($CONFIG['debug_level'] & 8) |
| | | $SMTP_CONN->setDebug(TRUE); |
| | | |
| | | |
| | | // try to connect to server and exit on failure |
| | | $result = $SMTP_CONN->connect($smtp_timeout); |
| | |
| | | $smtp_user = $CONFIG['smtp_user']; |
| | | |
| | | if (strstr($CONFIG['smtp_pass'], '%p')) |
| | | $smtp_pass = str_replace('%p', decrypt_passwd($_SESSION['password']), $CONFIG['smtp_pass']); |
| | | $smtp_pass = str_replace('%p', $RCMAIL->decrypt_passwd($_SESSION['password']), $CONFIG['smtp_pass']); |
| | | else |
| | | $smtp_pass = $CONFIG['smtp_pass']; |
| | | |