SMTP GMAIL 的 IP 地址

SMTP GMAIL 的 IP 地址

你知道 SMTP GMAIL 的 IP 地址是多少吗(它允许你从批处理窗口发送邮件)

@echo off

set repertoire="C:\Mon repertoire\"
set [email protected]
set [email protected]
set copie=-cc [email protected]
set subj=-s "Titre de mon message"
set server=-server smtp.domaine.com
set x=-x "X-Header-Test: header supplémentaire optionnel inséré dans le mail"
set debug=-debug -log envois-mails.log -timestamp

FOR /F "tokens=*" %%i IN ('DIR /B /O-D %repertoire%*.log') DO set fichier="%repertoire:"=%%%i" && GOTO DONE || GOTO DONE
: DONE

blat %fichier% -mime -8bitmime -to %eMail% %copie% -f %emetteur% %subj% %server% %debug% %x%

先感谢您

答案1

您实际上应该使用域地址而不是 IP 地址,因为 IP 地址很容易改变。

对于 google 域中的 smtp 服务器使用smtp.gmail.com和端口587

关于该主题的一些详细信息可以找到这里


顺便说一句 - 在我看来真是一件可耻的事至少在评论之前要访问 superuser.com 并提出问题谷歌搜索的前 3 个页面gmail smtp settings我百分之百确信你没有这么做。

相关内容