cURL 可以用于通过代理发送电子邮件吗
我想从我的本地主机发送邮件。我通过我的机构的代理(HTTP)连接到互联网,这需要身份验证。是否可以使用 cURL 发送邮件,因为到目前为止我看到它仅获取网页。如果不是这样,您能否指定任何其他替代方案?非常感谢任何帮助!
谢谢!
I would like to send mails from my localhost. I am connected to internet through my institute's proxy(HTTP) which requires authentication. Is it possible to use cURL to send mails, because so far i've seen it fetching webpages only. If not so, could you please specify any other alternatives? Any help is greatly appreciated!!
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要使用 Web 界面发送邮件,您可以编写curl 脚本来使用代理和网站: http://curl.haxx.se/docs/httpscripting.html
如果您想使用 SMTP,curl 也可以做到这一点。然而,它可能不是发送电子邮件的最佳工具。
我认为没有人真正通过 HTTP 代理访问 SMTP,即使我认为您可以使用curl 通过 HTTP 代理(使用 CONNECT)建立隧道(如果您确实愿意的话)。
If you need to send mails using a web interface, you can script curl to use the proxy and the web site: http://curl.haxx.se/docs/httpscripting.html
If you want to use SMTP, curl can do that too. It might however not be the best tool out there for sending emails.
I don't think anyone truly access SMTP through HTTP proxy even if I think you can for example tunnel through a HTTP proxy (with CONNECT) using curl if you really want to.