常用邮箱的IMAP、SMTP配置

QQ邮箱

{
imap_host_name: "imap.qq.com",
imap_port: 993,
imap_connection_type: TLS,
smtp_host_name: "smtp.qq.com",
smtp_port: 465,
smtp_connection_type: TLS
}

腾讯企业邮箱

{
imap_host_name: "imap.exmail.qq.com",
imap_port: 993,
imap_connection_type: TLS,
smtp_host_name: "smtp.exmail.qq.com",
smtp_port: 465,
smtp_connection_type: TLS
}

Gmail邮箱

{
imap_host_name: "imap.gmail.com",
imap_port: 993,
imap_connection_type: TLS,
smtp_host_name: "smtp.gmail.com",
smtp_port: 587,
smtp_connection_type: TLS
}

Outlook邮箱

{
imap_host_name: "imap-mail.outlook.com",
imap_port: 993,
imap_connection_type: TLS,
smtp_host_name: "smtp-mail.outlook.com",
smtp_port: 587,
smtp_connection_type: StartTLS
}

iCloud邮箱

{
imap_host_name: "imap.mail.me.com",
imap_port: 993,
imap_connection_type: TLS,
smtp_host_name: "smtp.mail.me.com",
smtp_port: 587,
smtp_connection_type: StartTLS
}

网易126邮箱

{
imap_host_name: "imap.126.com",
imap_port: 993,
imap_connection_type: TLS,
smtp_host_name: "smtp.126.com",
smtp_port: 465,
smtp_connection_type: TLS
}

网易163邮箱

{
imap_host_name: "imap.163.com",
imap_port: 993,
imap_connection_type: TLS,
smtp_host_name: "smtp.163.com",
smtp_port: 465,
smtp_connection_type: TLS
}

你可能感兴趣的:(常用邮箱的IMAP、SMTP配置)