发送带有桌子的电子邮件

时间:2012-06-20 14:33:31

标签: asp.net vb.net html-email mailmessage

我正在使用MailMessage制作电子邮件,并希望嵌入动态填充的表格。我已将MailMessage属性设置为IsBodyHtml,因此我已经能够将HTML编码的文本插入到电子邮件正文中。使用它我可以轻松创建表格的顶部和底部,但创建行似乎是StringBuilder噩梦。

该表将包含6列和可从行集合中填充的可变行数。请求者不希望不将数据作为附件发送。

关于如何最好地开发更好的解决方案的任何建议?

提前致谢

2 个答案:

答案 0 :(得分:1)

它根本不是一个StringBuilder噩梦。

你可以构建一个类,称之为TableBuilder或者你喜欢的任何类,它将封装这个逻辑。

    public class TableBuider
    {

        private StringBuilder builder = new StringBuilder();


        public string[] BodyData { get; set; }
        public int BodyRows { get; set; }


        public TableBuider(int bodyRows, string[] bodyData)
        {
            BodyData = bodyData;
            BodyRows = bodyRows;
        }

        /// <summary>
        /// Since your table headers are static, and your table body
        /// is variable, we don't need to store the headers. Instead
        /// we need to know the number of rows and the information
        /// that goes in those rows.
        /// </summary>
        public TableBuider(string[] tableInfo, int bodyRows)
        {
            BodyData = tableInfo;
            BodyRows = bodyRows;
        }

        public string BuildTable()
        {
            BuildTableHead();
            BuildTableBody();
            return builder.ToString();
        }

        private void BuildTableHead()
        {
            builder.Append("<table>");
            builder.Append("<thead>");
            builder.Append("<tr>");
            AppendTableHeader("HeaderOne");
            AppendTableHeader("HeaderTwo");
            builder.Append("</tr>");
            builder.Append("</thead>");
        }

        private void BuildTableBody()
        {
            builder.Append("<tbody>");
            builder.Append("<tr>");
            // For every row we need added, append a <td>info</td>
            // to the table from the data we have
            for (int i = 0; i < BodyRows; i++)
            {
                AppendTableDefinition(BodyData[i]);
            }
            builder.Append("</tr>");
            builder.Append("</table");
        }

        private void AppendTableHeader(string input)
        {
            AppendTag("th", input);
        }

        private void AppendTableDefinition(string input)
        {
            AppendTag("td", input);
        }

        private void AppendTag(string tag, string input)
        {
            builder.Append("<" + tag + ">");
            builder.Append(input);
            builder.Append("</" + tag + ">");
        }

    }
}

AppendTableHeaderAppendTableDefinitionAppendTag方法封装了StringBuilder的所有繁琐部分。

这只是一个基本的例子,你也可以在它上面构建。

答案 1 :(得分:0)

本文是Lightswitch特有的。但示例代码显示了如何使用XHTML和嵌入式LINQ表达式填充HTML电子邮件中的变量行表。我认为您应该能够根据您的应用进行调整。

http://blogs.msdn.com/b/bethmassi/archive/2011/01/27/how-to-send-html-email-from-a-lightswitch-application.aspx