我有一个PHP脚本,它向用户发送一封html电子邮件,其中包含一个带有一些结果信息的表单以及一个HTML表单,其中有一个提交按钮,可以将读者带到网页。该按钮在查询字符串中附加了一些args,该字符串由提交触发的处理脚本读取。
但是在三星单元上,我回来显示我的URI字符串和错误消息,仅此而已。
它适用于我的笔记本电脑和iPhone,但不适用于三星5/6手机。这是我看到错误消息的唯一地方:
' net err cache miss'
是的,我已经看过很多关于这个主题的讨论,但似乎没有一个适用于我的场景。
以下是给出问题的电子邮件中的代码:
$htmlcode = "<!DOCTYPE html>".$crlf;
$htmlcode .= "<html lang='en'>".$crlf;
$htmlcode .= "<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>" . $crlf;
$htmlcode .= "<head>" . $crlf;
$htmlcode .= "<style type='text/css'>" . $crlf;
$htmlcode .= "body{font-size:14px;margin:0%;padding:0%;}" . $crlf;
$htmlcode .= "</style>" . $crlf;
$htmlcode .= "</head>" . $crlf;
$htmlcode .= "<body>" . $crlf;
$htmlcode .= "<p>$ans_msg</p>" . $crlf;
$htmlcode .= "<form name='thisform' action='http://jimginer.net/jump_to_nascar_currweek.php?poolid=$poolid&weekno=$weekno' method='POST'>" . $crlf;
$htmlcode .= "<br><br>";
$htmlcode .= "<p>For Pool: $poolid & Week: $weekno</p>" . $crlf;
$htmlcode .= "<input type='submit' style='margin-left:10%;' name='btn' value='View the Grid'>".$crlf;
$htmlcode .= "</form>" . $crlf;
$htmlcode .= "</body>" . $crlf;
$htmlcode .= "</html>" . $crlf;
$sendmsg = $htmlcode;
mail($to, $subject, $sendmsg, $headers);