如何通过 URL 撰写带有附件的 Gmail 邮件?

发布于 2024-12-28 22:57:52 字数 251 浏览 2 评论 0原文

我正在用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拍不死你 2025-01-04 22:57:53

如果您必须使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文