gpt4 book ai didi

javascript - 有没有办法通过单击按钮从 Spotfire 发送电子邮件?

转载 作者:行者123 更新时间:2023-11-29 15:20:25 24 4
gpt4 key购买 nike

我正在寻找一个选项,使用 iron python 在 spotfire 文本区域中单击按钮发送电子邮件

(或)

我们能否在 iron python 和自动化服务的帮助下实现相同的功能。

(或)

有没有办法用R编程来完成

import clr
clr.AddReference("Microsoft.Office.Interop.Outlook")
from System.Runtime.InteropServices import Marshal


mail= Marshal.GetActiveObject("Outlook.Application").CreateItem(0)
mail.Recipients.Add("abc@xyz.com")
mail.Subject = "subject here"
mail.Body = "Body here"
mail.Send();

上面的代码是发送电子邮件,它在 spotfire 客户端中工作正常但在网络播放器中不工作。请帮助我

最佳答案

您可以使用 mailR 包来触发电子邮件。这对我有用-

sender <- "sender@gmail.com" 
recipient<- "receiver1@gmail.com"
email <- send.mail(from = sender,to = recipients,subject="R-email",body =
"Body of the email",smtp = list(host.name = "smtp.gmail.com",
user.name="myuser@gmail.com",passwd="password",port=587,ssl=TRUE),authenticate
= TRUE,send = FALSE)
email$send()

关于javascript - 有没有办法通过单击按钮从 Spotfire 发送电子邮件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44419063/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com