How to use php variables in MJML

867 Views Asked by At

anybody any idea how to use php variables in MJML using the https://github.com/juanmiguelbesada/mjml-php library? Thanks

$greeting = 'Hello World';

    <mjml>
      <mj-body>
        <mj-section>
          <mj-column>

            <mj-image width="100px" src="/assets/img/logo-small.png"></mj-image>

            <mj-divider border-color="#F45E43"></mj-divider>

            <mj-text font-size="20px" color="#F45E43" font-family="helvetica"><?=$greeting?></mj-text>

          </mj-column>
        </mj-section>
      </mj-body>
    </mjml>
1

There are 1 best solutions below

0
On

There is no mention of any templating language in the documentation simply because there isn't any built-in templating language in MJML (and never has been). You're indeed confusing MJML with Mailjet's template language.

MJML is a markup language aimed at making it easy to create responsive emails.

For templating, you're free to use any template language of your choice.

source and examples