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를 지정하면을 지원하고 그렇지 않은 경우 시스템 폴백 글꼴을 지정할 수 있습니다.

    당신의 <head> 내에서 같은 것을 배치하는 당신에게 최적의 범위를 얻을 것이다 : 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]--> 
    

    더.

    +0

    하지만 이미지가 아닌 맞춤 글꼴이 포함 된 메일을받는 경우가 있습니다. S : S – Un1xCr3w

    +0

    사용자 정의 글꼴이있는 이메일 클라이언트는 무엇입니까? –

    +0

    hotmail.com, gmail.com : S – Un1xCr3w