Reputation: 12085
In my website, I need to send a data table to the client via email. I want the table in a good format. I've heard that inline style doesn't work on Outlook so I think about CSS.
I have no idea about how to do this. Using Append
method in the StringBuilder
class is my only choice. Could you tell me a better way to achieve what I want? Thank you so much.
Upvotes: 2
Views: 2342
Reputation: 1594
You could use MvcMailer for this purpose. It helps composing Email body using regular ASP.NET MVC views
Upvotes: 3