Skip to content

Commit 27de64b

Browse files
committed
minor #12493 [Mailer] Update documentation to reflect up-to-date package names (tucksaun)
This PR was merged into the 4.4 branch. Discussion ---------- [Mailer] Update documentation to reflect up-to-date package names Hi, This PR synchronizes Mailer documentation with Twig documentation regarding package names and filter names. Commits ------- d548d2c [Mailer] Update documentation to reflect up-to-date package names
2 parents 21c0088 + d548d2c commit 27de64b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

mailer.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ it with:
406406

407407
.. code-block:: terminal
408408
409-
$ composer require twig/cssinliner-extension
409+
$ composer require twig/cssinliner-extra
410410
411411
The extension is enabled automatically. To use this, wrap the entire template
412412
with the ``inline_css`` filter:
@@ -508,14 +508,14 @@ the extension in your application:
508508

509509
.. code-block:: terminal
510510
511-
$ composer require twig/inky-extension
511+
$ composer require twig/inky-extra
512512
513-
The extension adds an ``inky`` filter, which can be used to convert parts or the
514-
entire email contents from Inky to HTML:
513+
The extension adds an ``inky_to_html`` filter, which can be used to convert
514+
parts or the entire email contents from Inky to HTML:
515515

516516
.. code-block:: html+twig
517517

518-
{% apply inky %}
518+
{% apply inky_to_html %}
519519
<container>
520520
<row class="header">
521521
<columns>
@@ -532,7 +532,7 @@ You can combine all filters to create complex email messages:
532532

533533
.. code-block:: twig
534534
535-
{% apply inky|inline_css(source('@css/foundation-emails.css')) %}
535+
{% apply inky_to_html|inline_css(source('@css/foundation-emails.css')) %}
536536
{# ... #}
537537
{% endapply %}
538538

0 commit comments

Comments
 (0)