使用 swiftmailer 在 html 电子邮件中使用 php 变量
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不明白你为什么要使用这个,
除非
rawurlencode ($code)
I don't understand why you are using this
unless than
rawurlencode ($code)