M
Mark B
I have been using the following tags to identify a section of email HTML
when creating and sending an email with C#:
public static string MY_SECTION_DIV_START = "<DIV id='my_section_start'>";
public static string MY_SECTION_DIV_END = "<DIV id=my_section_end></div>";
So when I send an email I programmatically put these in the HTML and when I
receive an email reply to that email I search for them.
It's working fine except when emailing someone with a Gmail account. In that
case Gmail strips out the id part and returns only:
<DIV></DIV>
Does anyone know of another tag or way I could do this such that it is
Gmail-proof?
when creating and sending an email with C#:
public static string MY_SECTION_DIV_START = "<DIV id='my_section_start'>";
public static string MY_SECTION_DIV_END = "<DIV id=my_section_end></div>";
So when I send an email I programmatically put these in the HTML and when I
receive an email reply to that email I search for them.
It's working fine except when emailing someone with a Gmail account. In that
case Gmail strips out the id part and returns only:
<DIV></DIV>
Does anyone know of another tag or way I could do this such that it is
Gmail-proof?