Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一个时事通讯应用程序,我将视图作为邮件模板发送。在视图内部有一个变量,它保存从表单中获取的内容。我尝试将不同的内联样式应用于视图,但没有人工作。这是视图,现在只有一种样式(颜色:蓝色)来测试 css:
<html> <body style="color:blue;"> {{ $content }} </body> </html>
我该如何设置此视图的样式,并使用正确的 css 样式发送邮件?谢谢
你可以做这样的造型,
<!DOCTYPE html> <html> <body> <p style="font-style:italic"> {{ $content }} </p> </body> </html>
这个对我有用。