cygwin中的Ruby Outlook自动化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cygwin中的Ruby Outlook自动化相关的知识,希望对你有一定的参考价值。
Simple Outlook automation, the idea is to use this in cygwin to send files without opening the outlook UI, to use it place the code under /bin folder and make it executable with chmod +x.
#!/usr/bin/ruby require 'win32ole' f = IO.popen("cygpath -w "+ARGV[1].to_s) path= f.gets.strip outlook = WIN32OLE.new('Outlook.Application') message = outlook.CreateItem(0) message.Subject = 'see attached file' message.Body = '' message.To = ARGV[0] message.Attachments.Add(path, 1) message.Send
以上是关于cygwin中的Ruby Outlook自动化的主要内容,如果未能解决你的问题,请参考以下文章
Outlook 中的 VBA:“Microsoft Outlook 已停止工作”消息
在 html 中嵌入图像以自动发送 Outlook365 电子邮件