Convert HTML String to Mail format
hi, probm i'm trying send html string mail getting displayed with html tags in mail there solution convert mail format proper alignment displayed in html file please , , should understand tags m sending variable through urlvariables template given below.
var html:string="<html><body>hello</body></html>"
private function sendmail():void
{
var url:string='mailto:';
var v:urlvariables = new urlvariables();
v.subject="hi";
v.body=html;
var urlrequest:urlrequest = new urlrequest(url);
urlrequest.data=v;
navigatetourl(urlrequest, "_self");
}
More discussions in Flex (Read Only)
adobe
Comments
Post a Comment