1

我使用Radiant與mailer擴展名在我的網站上提供聯繫表單。輻射郵件和閃光消息

我想在發送電子郵件後顯示一個很好的「您的電子郵件已成功發送」消息。
然而,Radiant似乎只允許重定向它的配置。不定義Flash消息。
您是否知道通過輻射郵件擴展來定義Flash消息的方法?

回答

0

歐凱,我一直在挖掘和解決我的問題有以下:

發送電子郵件後,重定向的頁面有錨#mailer。 所以有一些JavaScript,我發現錨的存在和我顯示消息「您的電子郵件感謝」」。

這裏是我的代碼(使用JQuery)

<script type="text/javascript"> 
    $(document).ready(function() { 
     $('#flash').hide(); 
     if (window.location.href.match(/\#mailer/)) { 
      $('#flash').html('Enter the message here'); 
      $('#flash').fadeIn(3000); 
     } 
    }); 
</script> 

<div class="flash"></div>