2011-04-27 8 views
2

Google 웹 앱은 가입시 확인 이메일을 보냅니다. 이 메시지는 Gmail의 스팸 폴더에만 전달됩니다. 우리가 보내는 다른 모든 전자 메일은받은 편지함의 최종 사용자가 올바르게 수신합니다. 나는 이것을 조사하는 데 많은 시간을 보냈지 만 전자 메일 또는 다른 문제의 실제 HTML 코드인지 파악할 수없는 것 같습니다. 제발 도와 줄 수있어?Gmail이 환영 이메일 전용 스팸입니다

Hi <?php echo $fname; ?>, 
      Your account has been created - now it is easier than ever to share with those who share your passion. 
      Here are three ways for you to get started: 
      - complete your profile 
      - install the bookmarklet. It lets you add an item from any website with just one click. 
      - discover great items by other members 
      Enjoy!- The Liv Team 

수있는 사람의 도움을하시기 바랍니다 :

여기
<html> 
    <div style="width: 600px; background: #f2f2f2; padding-bottom: 25px; padding-top: 25px;"> 
     <div style="border: 1px solid #e0e9e8; width: 550px; background: #ffffff; margin-left: 25px; margin-right: 25px;"> 
      <p style="font-family: arial; font-size: 18px; margin-left: 35px; margin-top: 15px;">Hi <?php echo $fname; ?>,</p> 
      <p style="font-family: arial; font-size: 14px; margin-left: 35px; margin-right: 30px; margin-top: 10px;">Your account has been created - now it is easier than ever to share with those who share your passion.</p> 
      <p style="font-family: arial; font-size: 12px; font-weight: bold; margin-left: 35px; margin-top: 15px;">Here are three ways for you to get started:</p> 
      <p style="font-family: arial; font-size: 12px; margin-left: 50px; margin-top: 10px;">- <a href="http://www.livthis.com">complete your profile</a></p> 
      <p style="font-family: arial; font-size: 12px; margin-left: 50px; margin-top: 10px;">- install the <a href="http://www.theliv.com/liv/staticpages/button">bookmarklet</a>. It lets you add an item from any website with just one click.</p> 
      <p style="font-family: arial; font-size: 12px; margin-left: 50px; margin-top: 10px;">- <a href="http://www.theliv.com/liv/wishlists/home/everyone">discover great items</a> by other members</p> 
      <p style="font-family: arial; margin-left: 35px; padding-bottom: 20px; padding-top: 25px;">Enjoy!<br>- The Liv Team</p> 
     </div> 
    </div> 
</html> 

우리의 텍스트 이메일입니다 : 여기

우리의 HTML 이메일입니까?

+0

Gmail에서 스팸으로 신고 된 메일 중 하나로 이동합니다. 아래 화살표 (답글로)와 Show Original을 클릭하십시오. 거기에 어떤 문제가 보이십니까? – Farray

+0

나는 그것을 조사했고 약간의 차이점이 있었다. 내 귀환 경로가 달랐어 요. 내받은 편지함이 다릅니다. 하나의 이메일은 www.theliv.com이고 다른 이메일은 theliv.com입니다. 그것이 문제의 원인이 될 수 있습니까? –

답변

1

메시지를이 기준과 대조하십시오. 좋은 소스처럼 보인다 : 당신이 당신의 HTML 이메일에 <body> 태그가 없습니다 것 같은

http://kb.mailchimp.com/article/how-spam-filters-think

+0

훌륭한 기사입니다. 나에게 연결 해줘서 고마워. 나는 그것을 조사했고 운 좋게 나는 그러한 실수를하지 않았다. 나는 더 많은 것들을 조사 할 것이다. 감사합니다 –

+0

괜찮습니다 ... :) – FreeSnow

0

보인다. W3C Validator과 같은 HTML 유효성 검사기를 통해 실행 해보십시오.

+0

내 HTML은 완벽하지는 않지만 오류는 모든 이메일에서 만들어졌으며 스팸 폴더에 있지 않습니다. 그러나, 나는 돌아가서 HTML을 정리했다. 감사. –