I am new to Yii2.. I sent email using Yii2 swift mailer SMTP. Email sent successfully but the sent email is not visible inside sent folder of the email can anybody help me.. here is my code. this is my controller code..
Yii::$app->mailer->compose()
->setFrom('info@abc.com')
->setTo('test@gmail.com')
->setSubject('Email sent from Yii2-Swiftmailer')
->send();
my configuration is
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'transport' => [
'class' => 'Swift_SmtpTransport',
'host' => 'abc.prod.sin3.secureserver.net',
'username' => 'info@abc.com',
'password' => 'xxxxxxxxxx',
'port' => '465',
'encryption' => 'ssl',
],
],