通过http代理发送邮件
我正在尝试从通过“Internet 选项”中设置的 http 代理连接到互联网的系统发送电子邮件。
我正在使用 SmtpClient。
有没有办法通过此代理设置使用 SmtpClient 发送邮件。 谢谢
I'm trying to send emails from a system that connects to internet through a http proxy which is set in Internet Options.
i'm using SmtpClient.
Is there any way to send mails with SmtpClient through this proxy setting.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Http 代理控制 http 流量,它们很少与 SMTP 有任何关系。 我以前从未听说过代理 SMTP,毕竟 SMTP 本身本质上支持目标 SMTP 服务器的“代理”链。
Http Proxies control http traffic, they rarely have anything to do with SMTP at all. I've never heard of proxying SMTP before after all SMTP itself is intrinsically supports a chain of "proxies" to the destination SMTP server.
我知道您想使用浏览器的默认设置,我也想得到答案。
同时,您可以手动完成。
I understand that you want to use the browsers default settings, i would also like an answer for that.
Meanwhile, you could do it manually.
使用 MailKit
来自 Microsoft :
创建一个控制台应用程序并添加 MailKit
代码以通过代理发送
在此示例中,我使用 Gmail 发送电子邮件。 为此,您必须生成一个令牌。
转到您的 gmail > 单击页面右上角的图标 > 管理您的 Google 帐户 > 从左侧菜单中选择安全> 中途选择应用程序密码> 选择邮件并选择您的设备> 按生成> 复制令牌并替换上面的 mytoken。
Use MailKit
From Microsoft:
Create a console app and add MailKit
Code to send through proxy
In this example, I've used Gmail to send the email. To do so you have to generate a token.
Go to your gmail > click on your icon on the very top right of the page > Manage your Google Account > from the menu on the left choose Security > half way down choose App Passwords > select Mail and select your device > press Generate > copy the token and replace mytoken above.
如果您对互联网的唯一访问是通过 HTTP,那么您能够做到这一点的唯一方法几乎是通过在端口 443 上设置带有 SSH 的 VPS(或同等设备)并使用 corkscrew(或 putty)来隧道 ssh 通过。 从这里开始,通过 ssh 隧道转发 smtp 流量就变得很简单。
请注意,如果您这样做,您可能会违反公司的计算政策。
If the only access you have to the internet is through HTTP, then pretty much the only way you'll be able to do this is by setting up a VPS (or equiv) with SSH on port 443 and using corkscrew (or putty) to tunnel ssh through. From there it is a simple matter to forward smtp traffic over your ssh tunnel.
Be aware that you may be violating the companies computing policy if you do this.