代码之家  ›  专栏  ›  技术社区  ›  neptune

胸腺电子邮件模板背景图像未显示

  •  1
  • neptune  · 技术社区  · 6 年前

    我有一个基于thymeleaf的电子邮件模板:

    <!DOCTYPE html>
    <html xmlns:th="http://www.thymeleaf.org">
    
    <head>
        <title th:text="#{email.reset.title}">reset title</title>
        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
    </head>
    
    <body th:style="'background: url(' + |cid:background| + ') no-repeat'">
        <div style="margin:110px 0 0 50px;">
            <div style="min-width:10px;min-height:300px"></div>
            <img style="display:block;margin-top:110px" th:src="|cid:logo|" />
            <img style="display:block;margin-top:110px" th:src="|cid:background|" />
        </div>
    </body>
    

    我定义了两个变量:

    message.addInline( "logo", new ClassPathResource( "mails/images/logo.png" ), "image/png" );
    message.addInline( "background", new ClassPathResource( "mails/images/background.png" ), "image/png" );
    

    来自 img 标签在发送的电子邮件中正确显示,但与背景相同的图像 body 没有出现。不知道为什么。

    2 回复  |  直到 6 年前
        1
  •  0
  •   Neptunus    6 年前

    几个月前,我也做了类似的事情,然后我就这样使用了<body>:

    <body th:style="'background: url(' + |cid:${background}| + ') no-repeat;'">
    

    没有美元符号$和大括号,我无法正确使用变量。

    我希望这有帮助。

        2
  •  0
  •   ASHVINI KUMAR    6 年前

    <body th style="margin: 0; padding: 0; background-image: url(images/background.png)"
          data-th-style="|background-position: center; background-repeat: no-repeat; background-size: cover; background-color: #ccc; background-image: url(cid:background)|"
    >

    还在努力。 如果有用的话试试这个。