我正在尝试使用 Groovy 脚本在 SOAPUI 中发送包含测试步骤结果的电子邮件。我首先在我的 Groovy 控制台上编写了代码,它运行良好。当我将它复制并粘贴到 SOAPUI(Groovy 脚本测试步骤)中时,它显示了一个错误。这是我的代码:
我正在尝试使用 Groovy 脚本在 SOAPUI 中发送包含测试步骤结果的电子邮件。我首先在我的 Groovy 控制台上编写了代码,它运行良好。当我将它复制并粘贴到 SOAPUI(Groovy 脚本测试步骤)中时,它显示了一个错误。这是我的代码
import javax.mail.*
import javax.mail.internet.*
public class SMTPAuthenticator extends Authenticator
{
public PasswordAuthentication getPasswordAuthentication()
{
return new PasswordAuthentication('test@gmaail.com', '****');
}
}
def d_email = "test@gmail.com",
d_uname = "test",
d_password = "*****",
d_host = "smtp.gmail.com",
d_port = "465", //465,587
m_to = "test2@gamil.com",
m_subject = "Testing",
m_text = "Hi, this is the testing email."
def props = new Properties()
props.put("mail.smtp.user", d_email)
props.put("mail.smtp.host", d_host)
props.put("mail.smtp.port", d_port)
props.put("mail.smtp.starttls.enable","true")
props.put("mail.smtp.debug", "true");
props.put("mail.smtp.auth", "true")
props.put("mail.smtp.socketFactory.port", d_port)
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory")
props.put("mail.smtp.socketFactory.fallback", "false")
def auth = new SMTPAuthenticator()
def session = Session.getInstance(props, auth)
session.setDebug(true);
def msg = new MimeMessage(session)
msg.setText(m_text)
msg.setSubject(m_subject)
msg.setFrom(new InternetAddress(d_email))
msg.addRecipient(Message.RecipientType.TO, new InternetAddress(m_to))
Transport transport = session.getTransport("smtps");
transport.connect(d_host, 465, d_uname, d_password);
transport.sendMessage(msg, msg.getAllRecipients());
transport.close();
问题出在这一行: transport.sendMessage(msg, msg.getAllRecipients());
当我删除这一行时,没有 errpr 但没有发送消息..
你知道为什么这在 groovy 控制台上完美运行,但在 Soapui 中抛出错误
提前谢谢你的帮助!