2
What would be a viable solution to send a Chart via email, via PHP? To get the Chart, I use it as follows:
      google.load("visualization", "1", {packages:["corechart"]});
    				      google.setOnLoadCallback(drawChart);
    				      function drawChart() {
    				        var data = google.visualization.arrayToDataTable([
    					        ['Element', 'Density', { role: 'style' }],
    					        ['Copper', 8.94, '#b87333', ],
    					        ['Silver', 10.49, 'silver'],
    					        ['Gold', 19.30, 'gold'],
    					        ['Platinum', 21.45, 'color: #e5e4e2' ]
    					      ]);
    
    				        var options = {
    				          title: 'Company Performance',
    				          hAxis: {title: 'Year',  titleTextStyle: {color: '#333'}},
    				          vAxis: {minValue: 0}
    				        };
    
    				        var chart = new google.visualization.AreaChart(document.getElementById('chart_div'));
    
    
    				        google.visualization.events.addListener(chart, 'ready', function () {
    					        chart_div.innerHTML = '<img src="' + chart.getImageURI() + '">';
    					        console.log(chart_div.innerHTML);
    					      });
    
    				        chart.draw(data, options);
    				      }    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    
    				    <div id="chart_div"></div>This way he returns me the Chart in a "printable version".
Taking as conclusion the text components that use formatting, you will have to throw your html in the body of the email.
– Marconi
Yes, but the Google Charts API is called only in the client and so does not work in an email. I am looking for a viable alternative to get that Chart from the server side and send only the image.
– Marcelo de Andrade