如何在laravel邮件模板中使用bootstrap

时间:2016-02-25 13:35:08

标签: html twitter-bootstrap css3 laravel laravel-5

我尝试使用邮件模板中的bootstrap获取href按钮超过20次,但它没有给出正确的输出。

<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
  <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>

<a href="http://google.com" class="btn btn-success">Yes</a> 

2 个答案:

答案 0 :(得分:1)

您无法在大多数电子邮件中使用链接标记。因为没有多少电子邮件客户端支持这一点,所以最好忘记它。我想你需要把CSS放在那里。例如:

<style>
    // All the bootstrap css
</style>

但我建议(如果你想按照自己的方式)来设置你自己的按钮,这样你的电子邮件模板中的数据就会减少。

<button type="button" style="background-color: red;">My button</button>

修改

最好使用电子邮件css /框架模板,请查看http://docs.telerik.com/platform/appbuilder/cordova/using-plugins/using-custom-plugins/add-custom-plugins问题

答案 1 :(得分:0)

不幸的是,似乎Gmail不支持HTML中的链接或样式标签。这变得很烦人