я использую swiftlibrary, но я не могу отправить сообщение, пожалуйста, помогите мне в этом
require_once (APPPATH.'libraries / swiftmailer / lib / swift_required.php ');
$transport = Swift_MailTransport::newInstance();
$message = Swift_Message::newInstance();
$message->setSubject('Your subject')
->setFrom('abc@gmail.com')
->setTo('xyz@gmail.com')
->setBody('Here is the message sent with swiftmailer')
->addPart('<q>Here is the message sent with swiftmailer</q>', 'text/html');
$mailer = Swift_Mailer::newInstance($transport);
$result = $mailer->send($message);
if($result)
{
echo "Email sent successfully";
}
else
{
echo "Email failed to send";
}