使用 swiftmailer 在 html 电子邮件中使用 php 变量

发布于 2024-12-07 21:16:39 字数 519 浏览 1 评论 0原文

我使用 swiftmailer 从我的网站发送电子邮件。我正在尝试发送 html 电子邮件,但在我的 php 代码中我想将 php 变量传递到电子邮件中。

这可能吗?如果可以的话我哪里出错了?

->setBody(
        '<html>' .
        ' <head></head>' .
        ' <body>' .
        '  Welcome to my site. To complete registration, please click activate below' .
        '  <a href="http://www.mysite.com/activate.php?=c' . <?php rawurlencode ($code);?>'">activate' .
        ' </body>' .
        '</html>',
        'text/html'
);

Im using swiftmailer to send my emails from my site. I'm trying to get a html email to send but in my php code i want to pass a php variable in to the email.

Is this possible and if so where am i going wrong?

->setBody(
        '<html>' .
        ' <head></head>' .
        ' <body>' .
        '  Welcome to my site. To complete registration, please click activate below' .
        '  <a href="http://www.mysite.com/activate.php?=c' . <?php rawurlencode ($code);?>'">activate' .
        ' </body>' .
        '</html>',
        'text/html'
);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

束缚m 2024-12-14 21:16:39

我不明白你为什么要使用这个,

<?php rawurlencode ($code);?>

除非

rawurlencode ($code)

I don't understand why you are using this

<?php rawurlencode ($code);?>

unless than

rawurlencode ($code)

無心 2024-12-14 21:16:39
<pre>
->setBody(
    '<html>' .
    ' <head></head>' .
        ' <body>' .
    '  Welcome to my site. To complete registration, please click activate below' .
    '  <a href="http://www.mysite.com/activate.php?=c'. rawurlencode ($code) .' ">activate  ' .
    ' </body>' .
    '</html>',
    'text/html'
);
</pre>
<pre>
->setBody(
    '<html>' .
    ' <head></head>' .
        ' <body>' .
    '  Welcome to my site. To complete registration, please click activate below' .
    '  <a href="http://www.mysite.com/activate.php?=c'. rawurlencode ($code) .' ">activate  ' .
    ' </body>' .
    '</html>',
    'text/html'
);
</pre>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文