如何发送带有HTML内容的Outlook电子邮件

时间:2014-12-16 13:34:34

标签: html-email outlook-2010

任何人都可以帮我解决如何使用Microsoft Outlook 2010发送包含html内容(Google Charts)的电子邮件。

以下是Google Charts的示例html内容。

<html>
<head>
    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript">
     google.load("visualization", "1", {packages:["corechart"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() {

        var data = google.visualization.arrayToDataTable([
          ['Task', 'Hours per Day'],
          ['Work',     11],
          ['Eat',      2],
          ['Commute',  2],
          ['Watch TV', 2],
          ['Sleep',    7]
        ]);

        var options = {
          title: 'My Daily Activities'
        };

        var chart = new google.visualization.PieChart(document.getElementById('piechart'));

        chart.draw(data, options);
      }
    </script>
  </head>
 <body>
    <div id="piechart" style="width: 900px; height: 500px;"></div>
  </body>
</html>

1 个答案:

答案 0 :(得分:0)

Outlook对象模型为其项目提供HTMLBody属性。因此,您可以将属性设置为HTML标记,然后发送邮件项。

您可以在How To: Create and send an Outlook message programmatically文章中找到示例代码。