yii2 how to make a notification by e-mail to the user after changing his status?? Help me, Please!
Model
class Applicants extends \yii\db\ActiveRecord
{
public $file;
public static function tableName()
{
return 'applicants';
}
public function rules()
{
return [
[['user_id', 'type_passport_id', 'passport_number', 'date', 'expiration_date', 'passport_path', 'diplom_number', 'diplom_path', 'phone_number', 'mobile_number', 'country_id', 'city_id', 'address', 'faculty_id', 'spec_id', 'stage_id', 'training_id', 'dormitories_id'], 'required'],
[['user_id', 'type_passport_id', 'country_id', 'city_id', 'status_id', 'faculty_id', 'spec_id', 'stage_id', 'training_id', 'dormitories_id'], 'integer'],
[['passport_number', 'mobile_number', 'applicants_comment'], 'string', 'max' => 250],
[['expiration_date'], 'string', 'max' => 120],
[['file'], 'file', 'skipOnEmpty' => true, 'extensions' => 'pdf'],
[['passport_path', 'diplom_path', 'address'], 'string', 'max' => 255],
[['diplom_number'], 'string', 'max' => 50],
[['phone_number'], 'string', 'max' => 30],
[['user_id'], 'unique'],
[['user_id'], 'exist', 'skipOnError' => true, 'targetClass' => User::className(), 'targetAttribute' => ['user_id' => 'id']],
];
}
Help me, Please!