SMTP 不在 gmail 企业帐户中发送电子邮件

SMTP is not sending emails in gmail business account

此代码在 gmail 个人帐户中运行良好,但当我尝试使用 gmail 企业帐户时,它无法正常工作并不断出现错误。 5.5.1 需要身份验证。

void SendEmail()
{
    DataTable data = GetData();
    DataTable email_data = GetEmailData();
    data.TableName = "Employee_Data";

    using (XLWorkbook wb = new XLWorkbook())
    {
        wb.Worksheets.Add(data);

        using (MemoryStream memoryStream = new MemoryStream())
        {
            wb.SaveAs(memoryStream);
            byte[] bytes = memoryStream.ToArray();
            memoryStream.Close();
            String from = "seong@abcd.net";

            for (int i = 0; i < email_data.Rows.Count; i++)
            {
                String to = email_data.Rows[i][0].ToString();

                using (MailMessage mm = new MailMessage(from, to))
                {
                    mm.Subject = "Employees Attachment";
                    mm.Body = "Employees Exported Attachment";

                    mm.Attachments.Add(new Attachment(new MemoryStream(bytes), "Employees.xlsx"));
                    mm.IsBodyHtml = true;
                    SmtpClient smtp = new SmtpClient();
                    smtp.Host = "smtp.gmail.com";
                    smtp.EnableSsl = true;
                    System.Net.NetworkCredential credentials = new System.Net.NetworkCredential();
                    credentials.UserName = "seong@abcd.net";
                    credentials.Password = "1234";
                    smtp.UseDefaultCredentials = true;
                    smtp.Credentials = credentials;
                    smtp.Port = 587;
                    smtp.Send(mm);
                }
            }
        }
    }
}

我解决了这个问题。 如果您想使用 SMTP,该帐户不应在 gmail 中使用二次验证。

https://support.google.com/accounts/answer/1064203?hl=en&ref_topic=7189195

我不能控制那些东西,我请求管理员允许不要使用二次验证。 所以我可以使用 SMTP 使用该帐户。

Business Gsuite 的 Smtp 方法

require_once('class.phpmailer.php');

$mail = new PHPMailer(); // defaults to using php "mail()"
$mail->IsSMTP();
$mail->SMTPDebug = 0;
$mail->SMTPSecure = "tls";
$mail->SMTPAuth = true; 
$mail->Port = 587;
$mail->Host = "smtp.gmail.com";
$mail->Username   = "Enter the user ID"; // SMTP account username
// SMTP account password
$mail->Password   = "Enter your password";

$mail->SetFrom('Enter the User ID', 'Subject');
$mail->AddReplyTo("Enter the User ID", "Subject");

$mail->AddAddress($to, "Name");

$mail->Subject    = "Contact Enquiry";

$message = '';

$mail->MsgHTML($message);

if($mail->Send()){
   $mail->ClearAddresses();  
   echo "Mail Sent. Thank you " . $first_name . ", we will contact you shortly.";
} else {
     echo "Mailer Error: " . $mail->ErrorInfo;
}