2016-08-21 5 views
0

まず、私は16,000メールのような顧客数にメールを送りますが、残念なことに私のカスタムフォントで問題が見つかりました。私は私のメールページにそれを読み込むことができません。 CSSで@font-faceでHTML 電子メールにカスタムフォントを含めることはできません

<link href='https://fonts.googleapis.com/css?family=Droid%20Arabic%20Kufi' rel='stylesheet' type='text/css'> 
  • にリンクタグで

    1. :私はこれを試してみました
      @font-face { 
          font-family: 'Droid Arabic Kufi'; 
          font-style: normal; 
          font-weight: 400; 
          src: url(https://fonts.gstatic.com/ea/droidarabickufi/v6/DroidKufi-Regular.eot); 
          src: url(https://fonts.gstatic.com/ea/droidarabickufi/v6/DroidKufi-Regular.eot?#iefix) format('embedded-opentype'), 
           url(https://fonts.gstatic.com/ea/droidarabickufi/v6/DroidKufi-Regular.woff2) format('woff2'), 
           url(https://fonts.gstatic.com/ea/droidarabickufi/v6/DroidKufi-Regular.woff) format('woff'), 
           url(https://fonts.gstatic.com/ea/droidarabickufi/v6/DroidKufi-Regular.ttf) format('truetype'); 
      }
    2. @import
      @import url(http://fonts.googleapis.com/earlyaccess/droidarabickufi.css); 
      

    は私がそれの画像を作る言わないので、私はできないとの理由PHPを介して生成されるメールフォームです。

    ありがとうございます。ありがとうございます。

  • 答えて

    3

    カスタムフォントはnot well supported in email clientsです。現在、Outlook、Gmailアプリ、または任意のウェブメールクライアントにウェブフォントを表示することはできません。しかし、をサポートしているクライアントに対してはwebfontを、サポートしていないシステムフォールバックフォントは指定できます。 webfont support in email on Style Campaign

    <!-- Desktop Outlook chokes on web font references and defaults to Times New Roman, so we force a safe fallback font. --> 
    <!--[if mso]> 
        <style> 
         * { 
          font-family: sans-serif !important; 
         } 
        </style> 
    <![endif]--> 
    
    <!-- All other clients get the webfont reference; some will render the font and others will silently fail to the fallbacks. --> 
    <!--[if !mso]><!--> 
        <link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'> 
    <!--<![endif]--> 
    

    の詳細:あなたの<head>の内側にこのような何かを置く

    は、あなたに可能な限り最高のカバレッジを取得します。

    +0

    カスタムフォントではなく画像でメールを受信する頻度はどのくらいですか:S:S – Un1xCr3w

    +0

    カスタムフォントはどのメールクライアントに表示されますか? –

    +0

    hotmail.com、gmail.com:S – Un1xCr3w

    関連する問題