I have a string variable which holds HTML markup. This HTML markup basically represents the email content.
Now I want to create an image from this string content which actually holds the HTML markup. I don't want to create the HTML file by writing this content into them. I just want to create an image file using this string.
Here's what I have:
string emailBody="<html><head></head><body><p>This is my text<p>...</body</html>"
How can I create an Image from this emailBody
string content?