答案 0 :(得分:5)
似乎我错过了documentation中的附件部分。我看到的是 TODO 部分(应该更新btw)。无论如何,这里有一个比那里提到的更清楚的例子。
String path = "./web-app/images/grails_logo.jpg"
sendMail {
multipart true
to 'alfred@fbmsoftware.com'
subject "Welcome to Grails!"
body '''
Greetings Earthlings!
'''
attachBytes path,'image/jpg', new File(path).readBytes()
}
有了这个,你可以附加任何类型的文件,只要你正确指定我猜的内容类型。
答案 1 :(得分:0)
Grails插件('grails install-plugin mail')即使在TLS上也能很好地工作 - 请参阅mac.com发送要求。
但是,对于那些使用Outlook或其他公司电子邮件系统的人,我发现使用resources.xml和Spring JavaMail帮助程序类的Grails解决方案略有不同:
1)将以下内容添加到myapp / grails-app / conf / spring / resources.xml中(见下文)
2)根据需要在您的业务服务中定义服务。
3)添加一些进口 - 完成! import javax.mail.internet.MimeMessage import org.springframework.core.io.FileSystemResource import org.springframework.mail.javamail.MimeMessageHelper
def mailSender
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<!-- Mail service -->
<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
<property name="host" value="mail.munger.somecorp.com"/>
<property name="port" value="25"/>
<property name="javaMailProperties">
<props>
<prop key="mail.debug">false</prop>
</props>
</property>
</bean>
<!-- more bean definitions go here... -->
</beans>
添加附件的Java代码:
MimeMessage message = mailSender.createMimeMessage()
MimeMessageHelper helper = new MimeMessageHelper( message, true )
for ( String recipients : [ customer1, customer2, customer3, customer4 ].findAll { it != null } )
{
helper.addTo( str );
}
helper.setFrom( "" )
helper.setSubject( aSubject )
helper.setText("...")
FileSystemResource fileResource =
new FileSystemResource( new File(tempFile) )
helper.addAttachment( tempFile.substring(tempFile.lastIndexOf( "/" ) + 1), fileResource, "application/pdf" )