How to prevent swiftmailer from sending email to the spam folder I'm using it like this:
        Yii::$app->mailer->compose()
          ->setFrom($sender_email)
          ->setTo($reciver)
          ->setSubject($subject)
          ->setTextBody($body)
          ->setHtmlBody($hml)
          ->send();
 
     
     
    