我在我的项目中使用highcharts,我有点新。我的问题是,* 如何获取我的图表的捕获,然后通过电子邮件发送它?* 对于电子邮件发送我使用PHPMailer,电子邮件工作正常。我在highcharts文档中搜索,他们建议节点导出服务器,但没有示例。我从互联网上得到了一些提示,但不工作。我想,当我点击通过电子邮件发送图表按钮,它应该采取图表的图片,并将其发送到电子邮件.所以,谁能好心地帮助我请与一个例子?一个简单的例子我的代码如下:
// import highcharts and export server
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
// sendGraphByMail is my PHPMailer configuration file
<a href="sendGraphByMail.php">
<button class="send-chart" onclick="sendChart()">Send chart by e-mail</button>
</a>
<div id="container"></div>
<h2>
Exported image below
</h2>
<img id="image" />
<script>
var options = {
chart: {},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
]
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
type: 'column'
}]
}
var chart = Highcharts.chart('container', options);
function sendChart() {
console.log('Send chart button clicked !');
// I think the exprot script goes here
}
页面屏幕截图如下所示。
1条答案
按热度按时间nbnkbykc1#
我想回答我自己:
对于电子邮件发送,我们使用弹性电子邮件提供商,因为SMTP只接受弹性电子邮件提供商.注意:不要强制同时导入smtpJS和html2canvas