如何发送带附件的电子邮件

时间:2012-06-03 16:01:35

标签: spring email email-attachments

我想发送一封附有图片的电子邮件。我正在使用弹簧3和速度模板。我能够这样做,但由于某些原因,当我添加带图像名称的扩展名时,我没有收到电子邮件。

以下是我正在使用的代码:

private MimeMessage createEmail(Application application, String templatePath,   String subject, String toEmail, String fromEmail, String fromName) {
    MimeMessage mimeMsg = mailSender.createMimeMessage();
    Map<String, Object> model = new HashMap<String, Object>();
    model.put("application", application);
    String text = VelocityEngineUtils.mergeTemplateIntoString(velocityEngine, templatePath, model);
    text = text.replaceAll("\n", "<br>");

    try {

        MimeMessageHelper helper = new MimeMessageHelper(mimeMsg, true);
        helper.setSubject(subject);
        helper.setTo(toEmail);

        if (fromName == null) {
            helper.setFrom(fromEmail);
        } else {
            try {
                helper.setFrom(fromEmail, fromName);
            } catch (UnsupportedEncodingException e) {
                helper.setFrom(fromEmail);
            }
        }

        helper.setSentDate(application.getDateCreated());
        helper.setText(text, true);

        InputStream inputStream = servletContext.getResourceAsStream("images/formstack1.jpg");
        helper.addAttachment("formstack1",  new ByteArrayResource(IOUtils.toByteArray(inputStream)));


    } catch (MessagingException e) {
        throw new RuntimeException(e);
    }
    catch (IOException e) {
        throw new RuntimeException(e);
    }

    return mimeMsg;
}

使用上面的代码我可以添加 formstack1 作为附件,但它没有扩展名,所以我没有得到 formstack1.jpg 图像文件。但当我使用 formstack1.jpg 作为helper.addAttachment("formstack1", new ByteArrayResource(IOUtils.toByteArray(inputStream)));附加的资源名称时,formstack1更改为formstack1.jpg我甚至无法收到电子邮件。我正在使用smtp.gmail.com25作为端口。我确实在控制台上收到了成功发送的电子邮件消息。但电子邮件 永远不会交付。

编辑:如果我将其保留为helper.addAttachment("formstack1", new ByteArrayResource(IOUtils.toByteArray(inputStream)));,并在下载附加图片时将扩展名从无更改为.jpg,我会获得所需的图片。

有人可以帮我理解为什么会这样,以及如何使用spring 3发送包含1个或多个附件的电子邮件。

感谢。

1 个答案:

答案 0 :(得分:2)

您最好使用Apache Commons HtmlEMail

http://commons.apache.org/email/userguide.html