PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Notifications Missing Html Container

  1. webcitymedia
    Member

    I wanted to share something I found when working a Gmail spam folder issue when using Gravity Forms notifications. My customers notification Gmail address recipient was seeing those Gravity Form notifications going into his spam folder. I duplicated the results using my Gmail account. I should note we use Postmark to ensure delivery. Gmail will accept these notifications but then Gmail does it's internal spam weighting is almost kills it. Having a message going into a spam folder hurts the reputation of the sender. The fix: Ensure every html notification includes the HTML container code at the top of the e-mail and bottom. Spammers often fail to write complete code and will get caught.

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    	<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    	<title>Confirmed Move from {Name: (First):23.3} {Name: (Last):23.6}</title>
    </head>
    <body>

    Normal Gravity Form content

    </body>
    </html>

    Native Gravity Notification Forms lacked the essential HTML container code.
    The fix is simple although manual.

    Posted 11 years ago on Thursday June 28, 2012 | Permalink
  2. webcitymedia
    Member

    Need to add an issue with the editor. The fix will disappear if you toggle back to the Visual Editor. The Visual mode strips out the HTML container.

    We need a solution that provides an optional default sticky html top and bottom section of the HTML container that is not impacted by the Visual editor.

    Posted 11 years ago on Monday July 9, 2012 | Permalink