我的html徽标无法在电子邮件中使用

时间:2014-05-11 14:50:10

标签: php html css email

我曾尝试为用户重置密码以重置密码,并希望在电子邮件中包含我的网站徽标。当我通过iphone打开邮件时,徽标可以正确显示,但当我通过网站yahoo.com打开并登录邮件时,它似乎没有任何内容

这是我的邮件:

$message='
    <!doctype html>
    <html>
    <head><meta charset="UTF-8"><title>lsere Message</title></head>
    <body>
    <header style="border-bottom:2px solid #f0f0f0;padding-bottom:20px;"><div style="margin-top:15px;
        box-shadow:1px 1px 10px gray;
        border-radius:5px;
        width:100px;
        margin-left:15px;
        text-align:center;
        padding-top:5px;
        padding-bottom:5px;
        color:white;
        font-size:25px;
        font-weight:bold;
        background: -webkit-linear-gradient(#a13030, #780000); 
        background: -o-linear-gradient(#a13030,#780000); 
        background: -moz-linear-gradient(#a13030,#780000); 
        background: linear-gradient(#a13030,#780000); 
        ">
        L\'sere
    </div>
    </header>
    <div>
    Reset Lsere account password<br>
    <div><a href="http://localhost/social_network/reset_password.php">Click here to reset your password</a></div>
    <div>Or you can enter your six digits confirmation code and continue on the lese page</div>
    <div>Your confirmation code is <span style="background:#f0f0f0; padding:2px;">'.$confirmation_code.' <span></div>

    </div>


    </body>

    </html>';   

    $headers = 'From: kesongxie646@gmail.com\n';

    $headers.='MIME-Version: 1.0'."\r\n";
    $headers.='Content-type: text/html; charset=iso-8859-1'."\r\n";

1 个答案:

答案 0 :(得分:0)

你的Iphone已经扩展了对复杂CSS的支持,但就像Vincent所说,webmail不提供对这种复杂支持的扩展支持,当你想到它时,我知道浏览器不支持它。

所以你最好放弃CSS版本并开始考虑实际插入图像。