c# - anchor not working with iphone mail body -
i have email service generates approval emails information , 2 link buttons... thing is, it`s working in email apps except outlook mobile app on iphone 2 buttons not appearing here link buttons html added code behind:
strhtmlbutton = "<tr><i><font size=\"2\" color=\"red\">please click on 1 of below actions automaticallygenereate e-mail response. make sure input comments fed within quotes. please not modify other response prompts.</font> </i><br><p> action:<a id='lnkapprove' style='text-decoration: none;' class=\"oralink\" href=#/\"mailto:" + objemail.emailfrom + "?subject=" + subjectapp + " &body=action:%20%27approve%27%0d%0a%0d%0amanager%20comments:%20%27%27%0d%0a%0d%0a%0d%0a%0d%0aapid " + permissionid + "%0d%0a%0d%0amanagerid " + managerid + "%0d%0a%0d%0anotificationid " + notificationid + "\"><font size=\"-1\"><b><input type=\"submit\" value=\"approve\"></b></font></a><a id='lnkreject' style='text-decoration: none;' class=\"oralink\" href=#/\"mailto:" + objemail.emailfrom + "?subject=" + subjectapp + "&body=action:%20%27reject%27%0d%0a%0d%0amanager%20comments:%20%27%27%0d%0a%0d%0a%0d%0a%0d%0aapid " + permissionid + "%0d%0a%0d%0amanagerid " + managerid + "%0d%0a%0d%0anotificationid " + notificationid + "\"> <font size=\"2\"><b><input type=\"submit\" value=\"reject\"></b></font></a></p>\"";
then adding string email body , send email, not appearing in body outlook on iphone, have tried add id, target, #,#/... nothing had worked...
for every <a href="#linkname">linkname</a>
,
you need corresponding <a name="linkname"></a>
link in code.
good luck.
Comments
Post a Comment