Language string failed to load: from_failed[from_email_address]
问题 I got this error when trying to send an email using smtp: Language string failed to load: from_failed**myemail@gmail.com** Here's my code: $mail = new PHPMailer(); //$mail->SetLanguage('en',dirname(__FILE__) . '/phpmailer/language/'); $SMTP_Host = "smtp.gmail.com"; $SMTP_Port = 465; $mail->SMTPSecure = 'ssl'; $SMTP_UserName = "myemail@gmail.com"; $SMTP_Password = "****"; $from = "myemail@gmail.com"; $fromName = "My Name"; $to = "destination@gmail.com"; $mail->IsSMTP(); $mail->Host = $SMTP