我将 SendGrid 的基本版本添加到 Heroku,以便我们可以从我们的网站发送用户反馈电子邮件。我正在使用的基本测试实现如下:
<?php
/**** Takes posted content from 'contact.html' and sends us an email *****/
require 'sendgrid-php/SendGrid_loader.php';
$sendgrid = new SendGrid('username', 'pwd');
$mail = new SendGrid\Mail();
$mail->
addTo('matthewpolega@gmail.com')->
setFrom('matthewpolega@gmail.com')->
setSubject('another')->
setText('Hello World!')->
setHtml('<strong>Hello World!</strong>');
$sendgrid->
smtp->
send($mail);
header( 'Location: contact.html' );
?>
它在本地主机测试中运行良好。但是,当我在线测试时,它会停止。有没有人遇到过这样的问题?