We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Can I use VB code to send email in Thunderbird?

  • 1 个回答
  • 0 人有此问题
  • 1 次查看
  • 最后回复者为 Matt

more options

I recently changed from Outlook to Thunderbird. A task manager application that I wrote for my own use a few years ago uses the following code to automate sending periodic email reminders. The code looks like the sample below, except that I load the actual values for subject / to / message / body from a table.

o = createobject("outlook.application") oitem=o.createitem(0) oitem.subject = "Email Test" oitem.to = "[email protected]" m.message = "Test message" oitem.body = "Body of test message" oitem.send o=.null.

Is there code snippet I can use to send email via Thunderbird?

Thanks.

- Dean Lesner
I recently changed from Outlook to Thunderbird. A task manager application that I wrote for my own use a few years ago uses the following code to automate sending periodic email reminders. The code looks like the sample below, except that I load the actual values for subject / to / message / body from a table. ************************************* o = createobject("outlook.application") oitem=o.createitem(0) oitem.subject = "Email Test" oitem.to = "[email protected]" m.message = "Test message" oitem.body = "Body of test message" oitem.send o=.null. ************************************* Is there code snippet I can use to send email via Thunderbird? Thanks. - Dean Lesner

所有回复 (1)

more options

The issue is you no longer have an outlook.application.

Thunderbird does not automate easily, you can use MAPI to compose and prepare the message. You can also use the mailTo: protocol to do the same thing. It is getting the send part that has always stopped me. Thunderbird does not appear to have a send function that can be addressed via an API. It is good from a security point of view as you don't get malware just churning out SPAM using the mail client, unless someone click the send button. Bad for casual users of mail send code. Although direct SMTP delivery is really not that onerous.

It is easier in my opinion to use an SMTP library to send the mail directly to the outgoing server. If you use an outlook or Gmail outgoing server then the associated IMAP account will synchronize the sent mail back to the appropriate Thunderbird sent folder so you have a local record.

See https://learn.microsoft.com/en-us/dotnet/api/system.net.mail.smtpclient?view=net-7.0 which links to a preferred library rather than the internal functions.