如何检查响应代码是否为421,因为我试图发送电子邮件,但连接有时会断开连接,所以它返回421而不是220
错误
Expected response code 220 but got code "421", with message "421
Cannot connect to SMTP server 74.125.200.108 (74.125.200.108:587),
connect error 10060"
答案 0 :(得分:0)
您可以捕获错误并使用try/catch
进行相应处理。例如:
try {
// Code that should be tried
} catch (\Exception $e) {
// Handle exception
}