作者 邓超

smtp

... ... @@ -173,7 +173,9 @@ class MailFun {
$mail->SMTPAuth = true; //Enable SMTP authentication
$mail->Username = $email['email']; //SMTP username
$mail->Password = base64_decode($email['password']); //SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption
if($smtp['port']!=25){
$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption
}
$mail->Port = $smtp['port']; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS`
$mail->CharSet = 'utf-8';
$mail->Encoding = PHPMailer::ENCODING_QUOTED_PRINTABLE;
... ... @@ -317,7 +319,9 @@ class MailFun {
$mail->SMTPAuth = true; //Enable SMTP authentication
$mail->Username = $email; //SMTP username
$mail->Password = $password; //SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption
if($smtp['port']!=25){
$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption
}
$mail->Port = $smtp['port']; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS`
$mail->CharSet = 'utf-8';
$mail->Encoding = PHPMailer::ENCODING_QUOTED_PRINTABLE;
... ... @@ -352,18 +356,25 @@ class MailFun {
$host = ltrim($host,'/');
$arr = explode(":",$host);
if(str_contains($host, '//')){
return [
$data = [
'host' => $arr[0].':'.$arr[1],
'port' => empty($arr[2]) ? $port : $arr[2],
];
}else{
return [
$data = [
'host' => $ssl.$arr[0],
'port' => empty($arr[1]) ? $port : $arr[1],
];
}
if($data['port'] == 25){
$data['host'] = explode('//',$data['host'],2);
$data['host'] = $data['host'][1];
}
return $data;
}
... ...