is it possible to send user and email in xml format that is formatted using xslt styles?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can send any text in email. Doesn’t matter if you formatted it via XSLT or any other way. You of course can send XML and an XSLT stylesheet with it, but this is not a very good idea.
You can’t rely on the receiving client to be able to transform XML – most email clients do not have an XSLT processor built in (nor any understanding of XML). They are mostly text readers.
Use the resulting text of the transformation in your email, and you should be fine.
Of course, this is light in details, but so is your question.