Android - How do I create an email body from a file that contains css and html? -
i have looked , found lots of great answers on how load html body of email intent, couldn't find how load file contain css , html. have program shows webview display file using:
webview.loadurl("file://" + htmlmanager.htmlfilepath(htmlmanager.myhtmlfile));
i have email loading html using
uri data = uri.parse("mailto:?subject=" + subject + "&body=" + html.fromhtml(htmlstring));
but can use same file used loadurl body of email?
according site css not able rendered in android email bodies
Comments
Post a Comment