Suppose I have a dynamic html form generated by MVC view (database data with style sheet). Then I want to send the same html with email. For example, the result maybe is something like:
<div id="DivForPrint">
<fieldset>
<legend>Hello</legend>
<table>
<tbody><tr>
<td>
<label for="ID">
ID #:</label>
</td>
<td>
<span class="displayData">
9
</span>
</td>
<td width="100%"></td>
<td>
<label>
Date:
</label>
</td>
<td width="100px">
<span class="displayData">
23/09/2009_2:28_PM
</span>
</td>
</tr>
</tbody></table>
</fieldset>
</div>
How to get it and send it out with email? even I can set something like mail.IsBodyHtml = true; but style sheet is not available when sending email out