我正在做我的第一个Laravel 5元素,非常需要一种从电子邮件 View 内联CSS的方法。由于Mandrill的转换问题,我使用Mailgun(不幸的是,Mandrill具有嵌入的CSS内联功能,但Mailgun没有)。

看来,大多数用于在Laravel的电子邮件中内联CSS的软件包都已过时,大多数软件包在4.2版上均无法正常工作。我试过了:

Inlining CSS when sending an email with Mailgun in Laravel - Antoine Augusti-似乎没有任何作用,没有内联电子邮件。看来,L5有一些根本的差异打破了这种方法

fedeisas/laravel-mail-css-inliner-不起作用。有人在此Issue的末尾发布了一些代码,但我不知道如何实现它(也不知道它是否适用于Laravel 5)。

bweston92/laravel-inline-css-mailer-看起来很有希望,但似乎无能为力,没有内联CSS。

有人有什么建议吗?我真的很希望能够内联CSS的电子邮件,尤其是当我在发送HTML之前(从所见即所得编辑器)注入(inject)HTML时。

最佳答案

受无法工作的bweston92/laravel-inline-css-mailer的启发,我使用TijsVerkoyen\CssToInlineStyles软件包提出了这个小类(class)。请随时提出建议或向我指出更好的方向,只是需要快速的帮助。

    <?php namespace App\Library;

    use TijsVerkoyen\CssToInlineStyles\CssToInlineStyles;

    /**

 * Class inlineEmail
 *
 * Returns rendered Email view with inlined CSS
 * @package App\Library
 */
class inlineEmail {
    /**
     * Filename of the view to render
     * @var string
     */
    private $view;
    /**
     * Data - passed to view
     * @var array
     */
    private $data;

    /**
     * @param string $view Filename/path of view to render
     * @param array $data Data of email
     */
    public function __construct($view, array $data)
    {
        // Render the email view
        $emailView = view($view, $data)->render();
        $this->view = $emailView;
        $this->data = $data;
    }

    /**
     * Convert to inlined CSS
     *
     * @return string
     * @throws \TijsVerkoyen\CssToInlineStyles\Exception
     */
    public function convert()
    {
        $converter = new CssToInlineStyles();
        $converter->setUseInlineStylesBlock();
        $converter->setCleanup();
        $converter->setStripOriginalStyleTags();
        $converter->setHTML($this->view);
        $content =  $converter->convert();

        return $content;
    }
}

用:
$data = ['someVar' => 'someValue'];
        $inlineEmail = new inlineEmail('emails.group-email', $data);
        $content  = $inlineEmail->convert();
        Mail::queue('emails.raw', ['content' => $content], function($message) use ($data) {
            $message->subject('Hello World')
                ->to('support@somewhere.org')
                ->bcc($data['recipients']);
        });

然后,将转换后的内联HTML/CSS传递给emails.raw,其中仅包含{!! $content !!}

这是我大部分电子邮件使用的模板-本质上是电子邮件的Bootstrap的最低版本。我要赞扬它的作者,但是如果有人知道,则很难准确找到我找到它的地方,请发表评论。还有许多其他模板,只需搜索Bootstrap电子邮件模板或HTML电子邮件模板即可。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta name="viewport" content="width=device-width" />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Email Title</title>
    <style type="text/css">
        * {
            margin: 0;
            padding: 0;
            font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
            font-size: 100%;
            line-height: 1.6;
        }
        img {
            max-width: 100%;
        }
        body {
            -webkit-font-smoothing: antialiased;
            -webkit-text-size-adjust: none;
            width: 100%!important;
            height: 100%;
        }
        a {
            color: #348eda;
        }
        .btn-primary {
            text-decoration: none;
            color: #FFF;
            background-color: #348eda;
            border: solid #348eda;
            border-width: 10px 20px;
            line-height: 2;
            font-weight: bold;
            margin-right: 10px;
            text-align: center;
            cursor: pointer;
            display: inline-block;
            border-radius: 25px;
        }
        .btn-secondary {
            text-decoration: none;
            color: #FFF;
            background-color: #aaa;
            border: solid #aaa;
            border-width: 10px 20px;
            line-height: 2;
            font-weight: bold;
            margin-right: 10px;
            text-align: center;
            cursor: pointer;
            display: inline-block;
            border-radius: 25px;
        }
        .last {
            margin-bottom: 0;
        }
        .first {
            margin-top: 0;
        }
        .padding {
            padding: 10px 0;
        }
        table.body-wrap {
            width: 100%;
            padding: 20px;
        }
        table.body-wrap .container {
            border: 1px solid #f0f0f0;
        }
        table.footer-wrap {
            width: 100%;
            clear: both!important;
        }
        .footer-wrap .container p {
            font-size: 12px;
            color: #666;

        }
        table.footer-wrap a {
            color: #999;
        }
        h1, h2, h3 {
            font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
            line-height: 1.1;
            margin-bottom: 15px;
            color: #000;
            margin: 40px 0 10px;
            line-height: 1.2;
            font-weight: 200;
        }
        h1 {
            font-size: 36px;
        }
        h2 {
            font-size: 28px;
        }
        h3 {
            font-size: 22px;
        }
        p, ul, ol {
            margin-bottom: 10px;
            font-weight: normal;
            font-size: 14px;
        }
        ul li, ol li {
            margin-left: 5px;
            list-style-position: inside;
        }
        .container {
            display: block!important;
            max-width: 600px!important;
            margin: 0 auto!important; /* makes it centered */
            clear: both!important;
        }
        .body-wrap .container {
            padding: 20px;
        }
        .content {
            max-width: 600px;
            margin: 0 auto;
            display: block;
        }
        .content table {
            width: 100%;
        }
    </style>
</head>

<body bgcolor="#f6f6f6">
<!-- Main Body -->
<table class="body-wrap">
    <tr>
        <td></td>
        <td class="container" bgcolor="#FFFFFF">
            <div class="content">
                <table>
                    <tr>
                        <td align="center">
                            <img src="https://example.com/images/logo.png" alt="Company Logo"/>
                        </td>
                    </tr>
                    <!-- Email content goes here .. -->
                    @yield('content')
                </table>
            </div>
        </td>
        <td></td>
    </tr>
</table>
<!-- /Main Body -->
<!-- Footer -->
<table class="footer-wrap">
    <tr>
        <td></td>
        <td class="container">
            <div class="content">
                <table>
                    <tr>
                        <td align="center">
                            <p>Footer goes here</p>
                        </td>
                    </tr>
                </table>
            </div>
        </td>
        <td></td>
    </tr>
</table>
<!-- /Footer -->
</body>
</html>

扩展此 View 的典型电子邮件如下所示:
@extends('emails.template')
@section('content')
    <tr>
        <td>
            <h1>Example Email</h1>
            <p>This is an example email. There are many like it but this one is mine.</p>
        </td>
    </tr>
    <tr>
        <td align="center">
            <p>
                <a href="http://example.com" class="btn-primary">This is a Button</a>
            </p>
        </td>
    </tr>
@endsection

关于css - Laravel 5-电子邮件中的内联CSS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29661851/

10-14 21:56
查看更多