3
Swiftmailer
を使用して電子メールを送信しようとしています。Swiftmailer - 未知のエラー:未定義のメソッドを呼び出すSwift_SmtpTransport :: newInstance()
私は不明なエラーを取得しています:ここで
Call to undefined method Swift_SmtpTransport::newInstance().
コードは次のとおりです。上記のコードに基づいて
require_once 'swift/lib/swift_required.php';
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, 'ssl')
->setUsername ('[email protected]')
->setPassword ('password');
$mailer = Swift_Mailer::newInstance($transport);
$message = Swift_Message::newInstance('Weekly Hours')
->setFrom (array('[email protected]' => 'My Name'))
->setTo (array('[email protected]' => 'Recipient'))
->setSubject ('Weekly Hours')
->setBody ('Test Message', 'text/html');
$result = $mailer->send($message);
、何がその間違いを引き起こしているのでしょうか?