これは、グラフを描画する下の HTML ファイルです。IE/Firefox/Chrome を使用して HTML ファイルを開くと、グラフが正しく表示されます。
このグラフをメール本文で送信する必要があります。以下のコマンドを使用しようとすると、この HTML のプレーン テキスト バージョンしか表示されません。
mail -r techgeeky@domain.com < graph.html
そのため、ファイルのgraph.htmlを以下のように変更し、上部に数行追加しました。上記のコマンドを実行すると、メール本文に何も表示されません。これを機能させるために、特にメールの上部に追加する必要があるものはありますか? SunOS 5.10 を実行しています。
From: techgeeky@domain.com
To: techgeeky@domain.com
Subject: MIME Test
Mime-Version: 1.0
Content-type: text/html; charset=utf-8
Content-transfer-encoding: us-ascii
<html>
<head>
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['corechart']});
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
function drawChart() {
// Create the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Title');
data.addColumn('number', 'Value');
data.addRows([
['No Error Percentage', 100-16.81336174073654],
['Error Percentage', 16.81336174073654]
]);
// Set chart options
var options = {'title':'LIP Data Quality Report',
'width':700,
'height':600};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<!--Div that will hold the pie chart-->
<div id="chart_div" style="width:900px; height: 800px;"></div>
</body>
</html>