如何通过 URL 撰写带有附件的 Gmail 邮件?
我正在用 Ruby 编写一个小脚本,用于搜索目录中的文件并创建要发送的新 Gmail 消息。它应该在主题字段中包含文件名,并将文件作为附件。
我有这个网址 http://pastie.org/3240209,它可以让我进入 Gmail 的撰写页面,并填写主题带有 PDF 文件的名称。
我想将此文件添加为附件。我可以通过 URL 来做到这一点吗?
I am writing a little script in Ruby that searches for a file in a directory and creates a new Gmail message to send. It should have the name of the file in the subject field, and the file as an attachment.
I have this URL http://pastie.org/3240209 which gets me to the compose page of Gmail, and fills the subject with the name of a PDF file.
I want to add this file as an attachment. Can I do that somehow through the URL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您必须使用 Gmail 发送某些内容,则不应该这样做。 Google 通过标准 IMAP 和 SMTP 公开 Gmail。您可以使用 oauth 在 ruby 中连接到这些服务。请参阅 http://code.google.com/apis/gmail/oauth/。然后,您可以使用 oauth 以及 ruby 标准 SMTP 库来发送 gmail。
If you have to send something with gmail, you should not be doing it that way. Google exposes gmail through standard IMAP and SMTP. You can use oauth to connect to these services in ruby. See http://code.google.com/apis/gmail/oauth/. You can use oauth along with the ruby standard SMTP library to send gmail then.