我有表格的php / html代码。在雅虎,gmail等看起来完全没问题,但是当在手机上的gmail应用程序中打开时,看起来如此混乱了奇怪的绿色和错误的不同字体大小。知道如何解决这个问题吗?以下链接包含2个屏幕截图。左边的那个是它在所有电子邮件帐户上的外观,包括gmail。右边的那个是它在iPhone上的gmail应用程序上的外观。
代码如下:
<?php
// Fixes the encoding to uf8
function fixEncoding($in_str)
{
$cur_encoding = mb_detect_encoding($in_str) ;
if($cur_encoding == "UTF-8" && mb_check_encoding($in_str,"UTF-8"))
return $in_str;
else
return utf8_encode($in_str);
} // fixEncoding
?>
<?php
require_once('class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail = new PHPMailer();
$body = '<html><body>';
$body .= '<table rules="all" style="border-color: #fff; font-family: Arial; width:595px; height:108px; font-size:115%; background-color:#ffffff;" cellpadding="10">';
$body .= "<tr><td style='text-align: center; text-align: middle; vertical-align: middle; vertical-align: center'>
<img style='border: 0px solid ; 'src='http://www.magentastorage.co.uk/mobile/images/emailheader.jpg'></a> </td></tr>";
$body .= '</table>';
$body .= '<table rules="all" style="border-color: #fff; font-family: Arial; width:595px; font-size:115%; background-color:#ffffff;" cellpadding="10"; position:relative; left:"20">';
$body .= "<tr><td style= 'padding-left:21px;'>Dear " .$_GET["name"] ."," . "</td></tr>";
$body .= "<tr><td style= 'padding-left:21px;'>Thank you for visiting our website and contacting us about your storage requirements. Below is a summary of your storage quotation: </td></tr>";
$body .= "<tr> <td style='text-align: left; font-family: Arial; vertical-align: left;'>
<img style='border: 0px solid ; ' src='http://www.magentastorage.co.uk/mobile/images/emailrequirements.png'> </td></tr>";
$body .= '</table>';
$body .= '<table rules="all" style="border-color: #fff; font-family: Arial; width:470px; font-size:115%; background-color:#ffffff;" cellpadding="10">';
$body .= "<tr>";
$body .= "<td style= 'padding-left:21px;'>Unit Size:</td>";
$body .= "<td>";
$body .= $_GET["unitsize"];
$body .= "</td>";
$body .= "<td></td>";
$body .= "</tr>";
$body .= '</table>';
$body .= '<table rules="all" style="border-color: #fff; font-family: Arial; width:595px; font-size:115%; background-color:#ffffff;" cellpadding="10">';
$body .= "<tr> <td style='text-align: left; font-family: Arial; vertical-align: left;'>
<img style='border: 0px solid ; '
src='http://www.magentastorage.co.uk/mobile/images/emailquotation.png'> </td></tr>";
$body .= "<tr><td style= 'padding-left:21px;'>" ."Weekly rental is" ." " ."£" .$_GET["price"] ." " ."</td> </tr>";
$body .= "<tr><td style= 'padding-left:21px;'>This quote includes VAT, insurance cover for up to" ." " ."£" .$_GET["insurance"] ." " ."and a padlock to secure your storage unit</td></tr>";
$body .= "<tr><td style= 'padding-left:21px;'>" ."<strong>" ."**4 WEEKS FREE STORAGE**" ."</strong>" ."</td>";
$body .= "<tr><td style= 'padding-left:21px;'>Simply pay for 4 weeks storage when you move in and we'll give you an extra 4 weeks storage completely free!</td></tr>";
$body .= "<tr><td style= 'padding-left:21px;'>Kind Regards, </td></tr>";
$body .= "<tr><td style= 'padding-left:21px;'>Store Manager </td></tr>";
$body .= "</table>";
$body .= "</body></html>";
答案 0 :(得分:0)
我对PHP没有足够的知识给你提供任何提示,但我发现静态HTML位有很多问题。
<td style='text-align: center; text-align: middle; vertical-align: middle; vertical-align: center'>
在这里,您已将垂直对齐设置两次。 vertical-align: center
无效,应予以删除。我还要在此样式声明中添加min-width:595px
。
<table rules="all" style="border-color: #fff; font-family: Arial; width:595px; font-size:115%; background-color:#ffffff;" cellpadding="10"; position:relative; left:"20">
而不是border-color: #fff
,只需创建整个边框即可。 border: 3px solid #ffffff
。你的样式声明之外有position:relative; left:"20"
,所以应该移动它们。此外,您需要为left
值添加一个单位,并删除cellpadding="10";
中的分号。
<td style='text-align: left; font-family: Arial; vertical-align: left;'>
您无法将垂直对齐设置为左侧。
此外,在电子邮件中工作时,最好使用完整的6个字符的十六进制代码。 border: 0px solid
可以替换为border: 0
。我还建议使用绝对字体大小,而不是相对百分比。
再一次,我不知道你的PHP有多扎实,但是看看你的HTML / CSS中有多少错误,我建议整理出来,你的电子邮件可能会更好一些。