Running the most current version of Gravity Forms and using the following to output email notifications in plain text:
// Change ticket submission form notification email format
add_filter("gform_notification_format_1", "text", 10, 4);
Emails do come through in plain text however all the html tags are present throughout the email and look like the code below. Anyone know how to fix this???
<tr>
<td colspan="2" style="font-size:14px; font-weight:bold; background-color:#EEE; border-bottom:1px solid #DFDFDF; padding:7px 7px">Requestor Info</td>
</tr><tr bgcolor="#EAF2FA">
<td colspan="2">
<font style="font-family: sans-serif; font-size:12px;">Name</font>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="20"> </td>
<td>
<font style="font-family: sans-serif; font-size:12px;">Name</font>
</td>
</tr><tr bgcolor="#EAF2FA">
<td colspan="2">
<font style="font-family: sans-serif; font-size:12px;">Username</font>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="20"> </td>
<td>
<font style="font-family: sans-serif; font-size:12px;">user</font>
</td>
</tr><tr bgcolor="#EAF2FA">
<td colspan="2">
<font style="font-family: sans-serif; font-size:12px;">Email</font>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="20"> </td>
<td>
<font style="font-family: sans-serif; font-size:12px;">email@gmail.com</font>
</td>
</tr><tr>