Sending mail to different users with different contents

How can i send different mail to different users using swiftMail mailer . I am very new to this yii2. Please give me sometips to overcome this situation.

//Here is my function in helper.php

public static function actionSendMailv2()

{


  $status = FALSE;


  try


  {


    $status = Yii::$app->mailer->compose()


               ->setTo('sai@abc.com')


               ->setCc(array('tammy@abc.com'))


               


               ->setFrom('contact@abc.com',"abc")


               ->setSubject("hello from abc")


               ->setHtmlBody("hi test")


               ->send();


  }


  catch(Exception $e)


  {


    $status = FALSE;


  }


  return $status;


}

Thanks.