如何在php中的文本变量中使用样式?

时间:2014-01-20 13:26:52

标签: php html css

我的用户在我的网站注册后发送了一封电子邮件,如下所示:

        --------------------------------
        Hello world 
        --------------------------------
        gogogo
        http://example.com/ ailesine katıldığınız için teşekkürler.

        Giriş Bilgileriniz:

        Kullanıcı Adı:  xxxxxx
        Şifre:          xxxxxx

        Buradan giriş yapın: http://example.com/?page=login.php

        Saygılar
        example.com Yönetimi.

        --------------------------------
        Sosyal ağlarda takipte kalın:
        Google : https://plus.google.com/+example
        Twitter: https://twitter.com/example
        Facebook: https://www.facebook.com/example
        Youtube: http://www.youtube.com/user/example
        --------------------------------

我想为这封电子邮件添加颜色我希望将第一部分设为红色,并且我想在底部制作无法点击的链接。

我尝试使用一些html标签和样式属性为txt着色,但它发送的方式如下:

        <span style="color:red;">--------------------------------
        Hello world
        --------------------------------</span>
        gogogo
        http://example.com/ ailesine katıldığınız için teşekkürler.

        Giriş Bilgileriniz:

        Kullanıcı Adı:  xxxxxx
        Şifre:          xxxxxx

        Buradan giriş yapın: http://example.com/?page=login.php

        Saygılar
        example.com Yönetimi.

        --------------------------------
        Sosyal ağlarda takipte kalın:
        Google : https://plus.google.com/+example
        Twitter: https://twitter.com/example
        Facebook: https://www.facebook.com/example
        Youtube: http://www.youtube.com/user/example
        --------------------------------

注意我用户发送电子邮件的php函数和eamil信息保存在php变量调用中$messege

如何为文字着色并使链接无法点击?

1 个答案:

答案 0 :(得分:1)

我的建议是在$message格式

中完全使用HTML
$message = "<html>
  <body style='background-color:grey>
    <center>
        <b> HTML email</b> <br>
         your text and adesign  
    </center>

  </body>
</html>"; 

然后

   $headers  = "From: $from\r\n";
   $headers .= "Content-type: text/html\r\n";  /*<= this is very important */

   mail($to, $subject, $message, $headers);

以下是一篇很好的解读: css tricks