批量扫描包含电子邮件地址和消息的二维码,并在扫描后自动发送电子邮件

发布于 2025-01-04 14:03:40 字数 209 浏览 3 评论 0原文

我想做一个物流项目,需要扫描大量二维码(500),所有这些二维码都包含唯一的电子邮件地址和消息。我见过扫描仪应用程序可以批量扫描它们,但为了发送消息,必须先打开它们,然后您必须按发送按钮。我想发送所有消息,否则我不会扫描他们的二维码。是否有一款扫描仪应用程序可以在扫描代码后立即自动发送电子邮件? 我正在使用 iPhone 扫描和发送电子邮件,

感谢您花时间提供帮助!

I want to do a logistics project that entails scanning alot of qr codes(500) all of which contain a unique email address and message. I've seen scanner apps that will batch scan them but in order to send the messages they must be opened first and then you have to press the send button. I want to send all the messages or else I wouldn't have scanned their qr code. Any idea of a scanner app that will auto send the emails immediately upon scanning the code?
I'm using an iphone for scanning and sending the emails

thanks for taking the time to help!

Lance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

妞丶爷亲个 2025-01-11 14:03:40

如果没有用户交互,您无法使用 Apple 在 iOS 中提供的电子邮件 API 发送电子邮件。有两种方法可以实现:

  1. 在您的应用程序中构建您自己的 SMTP 客户端,以便您可以直接连接到 SMTP 服务器并发送消息。

  2. 构建一个 Web 服务,您可以向其中发送电子邮件,或者可能只是构建和发送消息所需的信息。让您的应用程序通过此 Web 服务发送消息。

You can't send e-mail without user interaction using the email API provided by Apple in iOS. Two ways to do it are:

  1. Build your own SMTP client into your app, so that you can connect directly to a SMTP server and send messages.

  2. Construct a web service to which you can send e-mail messages, or perhaps just the information required to construct and send the messages. Have your app send the messages via this web service.

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