我使用以下命令将嵌入式图像添加到本地主机上的邮件中:
inline 'footerImage', 'image/jpg', new File('./web-app/images/mailAssets/suchebottomre.gif').readBytes()
哪个工作正常。
当我部署到测试环境时,出现以下错误:
Class
java.io.FileNotFoundException
Message
cannot use ./web-app/images/mailAssets/alert_header_pre.png as an attachment as it does not exist
与此日志:
Line | Method
->> 331 | inline in grails.plugin.mail.MailMessageBuilder
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 20 | doCall in de.docinsider.web.NotifierService$_contactUser_closure1
| 39 | sendMail . in grails.plugin.mail.MailService
| 13 | contactUser in de.docinsider.web.NotifierService
| 7 | doCall . . in de.docinsider.web.SendController$_closure1
| 195 | doFilter in grails.plugin.cache.web.filter.PageFragmentCachingFilter
| 63 | doFilter . in grails.plugin.cache.web.filter.AbstractFilter
| 1145 | runWorker in java.util.concurrent.ThreadPoolExecutor
| 615 | run . . . . in java.util.concurrent.ThreadPoolExecutor$Worker
^ 722 | run in java.lang.Thread
如何避免这种情况?
我还想通过以下方式实现resourceloader:
import org.springframework.context.ResourceLoaderAware
import org.springframework.core.io.ResourceLoader
class SendController implements ResourceLoaderAware {
@Autowired
ResourceLoader resourceLoader
def notifierService
def index() { }
def welcome = {
notifierService.contactUser(params.username, params.email, params.message)
render view:"/send/feedback", model:[name:params.username, message:params.message]
}
void setResourceLoader(ResourceLoader resourceLoader) {
resourceLoader = resourceLoader
}
}
这也不起作用。
带有:
inline 'headerImage', 'image/jpg', resourceLoader.getResource('/images/mailAssets/header_top.png')
inline 'footerImage', 'image/jpg', resourceLoader.getResource('/images/mailAssets/footer_bottom.gif')
在服务中。
最佳答案
我知道这是一个旧线程,但是我遇到了同样的问题,发现服务器不知道图像的真实路径,而是使用字符串作为真实路径“。/web-app/images/mailAssets/ alert_header_pre.png”。
阅读此post将帮助您获得实际路径。
代替:
inline 'footerImage', 'image/jpg', new File('./web-app/images/mailAssets/suchebottomre.gif').readBytes()
用这个:
inline 'footerImage', 'image/jpg', resourceLoader.getResource("/images/mailAssets/suchebottomre.gif").getFile()
您将需要
import org.springframework.core.io.Resource or org.springframework.core.io.ResourceLoader
,并且您的 Controller 将实现implements org.springframework.context.ResourceLoaderAware
并声明ResourceLoader resourceLoader
经过测试:
产品服务器:glassfish。
开发人员:Grails 2.3.7。