2016-01-27 75 views
0

我在iPhone上顯示電子郵件的方式存在問題。在Apple Mail的桌面上看起來很好。在iPhone上,文本包裝(見附圖,最上面的部分是它如何在桌面機器上的蘋果郵件中顯示,底部現在顯示在iPhone上)。有沒有辦法讓視口調整爲以全角顯示。 enter image description here移動設備上的電子郵件顯示

+0

你能解釋一下它是什麼,你想怎麼處理呢.. – Rafeek

+0

請張貼一些代碼 – kb920

+0

我想通了。我在iPhone上的輔助功能設置中打開了「更大的文字」。關閉電子郵件顯示就可以了。 – sscotti

回答

0

僅供參考,電子郵件的代碼片段使用PHPMailer和iCal支持。 HTML具有內聯CSS,因爲這似乎最適合用於大多數電子郵件客戶端的支持。 <Style>標籤和樣式表似乎不起作用。正如我所提到的,在我的iPhone的可訪問性設置中啓用大文本是問題所在。關閉時顯示正常。對於那些啓用該功能的用戶來說,我認爲這仍然是一個問題,但我認爲這是一個Apple IOS問題,除非有某種方法可以解決這個問題。

$mail = new PHPMailer(true); // the true param means it will throw exceptions on errors, which we need to catch 
     $mail->CharSet = 'UTF-8'; 
     $mail->IsSendmail(); // telling the class to use SendMail transport 

     try { 
     $myMessage = $header."</body></html>"; 
     $mail->AddAddress($buyerEmailAnet, $buyerFirstName. ' '.$buyerLastName); 
     $mail->AddCC('xxx'); 
     $mail->AddBCC('xxx'); 

     $mail->SetFrom('xxx', 'xxx'); 
     $mail->AddReplyTo('xxx', 'xxx'); 
     $mail->Subject = 'Los Cabos Airport Shuttles'; 
     $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically 
     $mail->MsgHTML($myMessage); //get HTML from session 
     $mail->Ical = $invite->render(false); 
     // $mail->AddAttachment('images/phpmailer.gif');  // attachment 
     // $mail->AddAttachment('images/phpmailer_mini.gif'); // attachment 
     $mail->Send(); 
     echo "<!-- Message Sent OK -->"; 

     } catch (phpmailerException $e) { 
     echo "<!-- ".$e->errorMessage()." -->"; //Pretty error messages from PHPMailer 
     } catch (Exception $e) { 
     echo "<!-- ".$e->getMessage()." -->"; //Boring error messages from anything else! 
     } 
相關問題