我将下面的代码用于 sendGrid 代码,用于从我的项目发送邮件。
require_once(YII_BASE_PATH . "/lib/sendgrid-php/SendGrid.php");
require_once(YII_BASE_PATH . "/lib/sendgrid-php/SendGrid_loader.php");
$sendgrid = new SendGrid('uname', 'pwd');
$mail = new SendGrid\Mail();
$mail->addTo('xxxxxxxxxx@gmail.com')->
setFrom('xxxyyyy5@yahoo.co.in')->
setSubject('Subject goes here')->
setText('Hello World!')->
setHtml('<strong>Hello World!</strong>');
$sendgrid->smtp->send($mail);
我已经下载了 sendGrid 包并将其放入 yii 的 lib 文件夹中。
如果我执行上面的代码,我会收到类似的错误"include(Swift_DependencyContainer.php): failed to open stream: No such file or directory"
如果我包含上述文件,我会收到错误,例如需要包含另一个文件。
请就此提出建议。