我安装了 Griffon 1.2 和邮件插件。
griffon install-plugin mail
我创建了一个测试:
sendMail(mailhost: '192.168.0.19',
to: 'me@home.com',
from: 'me@home.com',
subject: 'Test Mail',
text:'''
Hello
World''')
但它不使用 mailhost 参数。它尝试使用本地主机:
javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25
我通过 telnet 命令验证了 SMTP 服务器,并且可以正常工作。