/**
  * Executed when a submission is accepted
  *
  * @param $event
  * @return bool
  */
 public static function onSubmissionAccepted($event)
 {
     /** @var \app\models\Form $formModel */
     $formModel = $event->form;
     /** @var \app\models\FormSubmission $formSubmissionModel */
     $formSubmissionModel = $event->submission;
     /** @var \app\models\FormData $formDataModel */
     $formDataModel = $formModel->formData;
     /** @var array $submissionData */
     $submissionData = $formSubmissionModel->getSubmissionData();
     /** @var array $filePaths */
     $filePaths = $event->filePaths;
     /** @var \app\components\queue\MailQueue $mailer */
     $mailer = Yii::$app->mailer;
     // Sender by default: No-Reply Email
     $fromEmail = MailHelper::from(Yii::$app->settings->get("app.noreplyEmail"));
     // Sender verification
     if (empty($fromEmail)) {
         return false;
     }
     /*******************************
        /* Send Notification by e-mail
        /*******************************/
     $formEmailModel = $formModel->formEmail;
     // Submission data in email format
     $fieldsForEmail = $formDataModel->getFieldsForEmail();
     $fields = array();
     foreach ($submissionData as $key => $value) {
         $fields[$fieldsForEmail[$key]] = $value;
     }
     // Data
     $data = ['fields' => $fields, 'formID' => $formModel->id, 'submissionID' => isset($formSubmissionModel->primaryKey) ? $formSubmissionModel->primaryKey : null, 'message' => $formEmailModel->message];
     // Check first: Recipient and Sender are required
     if (isset($formEmailModel->to) && isset($formEmailModel->from) && !empty($formEmailModel->to) && !empty($formEmailModel->from)) {
         // Views
         $notificationViews = $formEmailModel->getEmailViews();
         // Subject
         $subject = isset($formEmailModel->subject) && !empty($formEmailModel->subject) ? $formEmailModel->subject : $formModel->name . ' - ' . Yii::t('app', 'New Submission');
         // ReplyTo (can be an email or an email field)
         $replyTo = $formEmailModel->fromIsEmail() ? $formEmailModel->from : Yii::$app->request->post($formEmailModel->from);
         // Compose email
         /** @var \app\components\queue\Message $mail */
         $mail = Yii::$app->mailer->compose($notificationViews, $data)->setFrom($fromEmail)->setTo($formEmailModel->to)->setReplyTo($replyTo)->setSubject($subject);
         // Attach files
         if ($formEmailModel->attach && count($filePaths) > 0) {
             foreach ($filePaths as $filePath) {
                 $mail->attach(Yii::getAlias('@app') . DIRECTORY_SEPARATOR . $filePath);
             }
         }
         // Send email to queue
         $mail->queue();
     }
     /*******************************
        /* Send Confirmation email
        /*******************************/
     $formConfirmationModel = $formModel->formConfirmation;
     // Check first: Send email must be active and Recipient is required
     if ($formConfirmationModel->send_email && isset($formConfirmationModel->mail_to) && !empty($formConfirmationModel->mail_to)) {
         // To (Get value of email field)
         $to = Yii::$app->request->post($formConfirmationModel->mail_to);
         // Remove all illegal characters from email
         $to = filter_var($to, FILTER_SANITIZE_EMAIL);
         // Validate e-mail
         if (!filter_var($to, FILTER_VALIDATE_EMAIL) === false) {
             // Views
             $confirmationViews = $formConfirmationModel->getEmailViews();
             // Message
             $data = ['message' => isset($formConfirmationModel->mail_message) && !empty($formConfirmationModel->mail_message) ? $formConfirmationModel->mail_message : Yii::t('app', 'Thanks for your message')];
             // Add submission copy
             if ($formConfirmationModel->mail_receipt_copy) {
                 $data['fields'] = $fields;
             }
             // Subject
             $subject = isset($formConfirmationModel->mail_subject) && !empty($formConfirmationModel->mail_subject) ? $formConfirmationModel->mail_subject : Yii::t('app', 'Thanks for your message');
             // ReplyTo
             $replyTo = isset($formConfirmationModel->mail_from) && !empty($formConfirmationModel->mail_from) ? $formConfirmationModel->mail_from : Yii::$app->settings->get("app.noreplyEmail");
             // Add name to From
             if (isset($formConfirmationModel->mail_from_name) && !empty($formConfirmationModel->mail_from_name)) {
                 $replyTo = [$replyTo => $formConfirmationModel->mail_from_name];
             }
             // Compose email
             /** @var \app\components\queue\Message $mail */
             $mail = Yii::$app->mailer->compose($confirmationViews, $data)->setFrom($fromEmail)->setTo($to)->setReplyTo($replyTo)->setSubject($subject);
             // Send email to queue
             $mail->queue();
         }
     }
 }
Example #2
0
 /**
  * API - send mail to user with new password & update to database
  * @param array $email
  * @return array $messages
  */
 public function forgotPassword($email)
 {
     $rules = array('email_id' => 'required|email');
     $messages = array('email_id.required' => 'parameter_missing', 'email_id.email' => 'invalid_email_format');
     $validation = Validator::make(array('email_id' => $email), $rules, $messages);
     if ($validation->fails()) {
         $emailMessages = $validation->messages();
         if ($emailMessages->has('email_id')) {
             $this->messages['error'] = Config::get('constants.errorMessages.' . $emailMessages->first('email_id'));
         }
     } else {
         $userData = $this->modelObjectUser->getUserByEmail($email);
         if ($userData) {
             if ($userData[0]['registerd_by'] == 'facebook') {
                 $this->messages['error'] = Config::get('constants.errorMessages.user_from_social_site');
                 return $this->messages;
             }
             // generate password
             $password = $this->generatePassword();
             $this->modelObjectUser->updatePassword($userData[0]['id'], Hash::make($password));
             $view = 'api.user.forgotPassword';
             $dataForView = ['name' => $userData[0]['user_name'], 'password' => $password];
             $emails[] = $userData[0]['email_id'];
             $subject = 'Forgot Password';
             $objMailHelper = new MailHelper();
             $isMailSent = $objMailHelper->sendMail($view, $dataForView, $emails, $subject);
             $this->messages['status'] = $this->successStatus;
         } else {
             $this->messages['error'] = Config::get('constants.errorMessages.user_not_found');
         }
     }
     return $this->messages;
 }
Example #3
0
 /**
  * Send email confirmation to user
  *
  * @param UserKey $userKey
  * @return int
  */
 public function sendEmailConfirmation($userKey)
 {
     /** @var Mailer $mailer */
     /** @var Message $message */
     // modify view path to module views
     $mailer = Yii::$app->mailer;
     $oldViewPath = $mailer->viewPath;
     $mailer->viewPath = Yii::$app->getModule("user")->emailViewPath;
     // send email
     $user = $this;
     $profile = $user->profile;
     $email = $user->new_email !== null ? $user->new_email : $user->email;
     $subject = Yii::$app->settings->get("app.name") . " - " . Yii::t("app", "Email Confirmation");
     $message = $mailer->compose('confirmEmail', compact("subject", "user", "profile", "userKey"))->setTo($email)->setSubject($subject);
     // Sender by default: Support Email
     $fromEmail = MailHelper::from(Yii::$app->settings->get("app.supportEmail"));
     // Sender verification
     if (empty($fromEmail)) {
         return false;
     }
     $message->setFrom($fromEmail);
     $result = $message->send();
     // restore view path and return result
     $mailer->viewPath = $oldViewPath;
     return $result;
 }
Example #4
0
 /**
  * Send forgot email
  *
  * @return bool
  */
 public function sendForgotEmail()
 {
     /** @var Mailer $mailer */
     /** @var Message $message */
     /** @var \app\modules\user\models\UserKey $userKey */
     // validate
     if ($this->validate()) {
         // get user
         $user = $this->getUser();
         // calculate expireTime (converting via strtotime)
         $expireTime = Yii::$app->getModule("user")->resetKeyExpiration;
         $expireTime = $expireTime !== null ? date("Y-m-d H:i:s", strtotime("+" . $expireTime)) : null;
         // create userKey
         $userKey = Yii::$app->getModule("user")->model("UserKey");
         $userKey = $userKey::generate($user->id, $userKey::TYPE_PASSWORD_RESET, $expireTime);
         // modify view path to module views
         $mailer = Yii::$app->mailer;
         $oldViewPath = $mailer->viewPath;
         $mailer->viewPath = Yii::$app->getModule("user")->emailViewPath;
         // send email
         $subject = Yii::$app->settings->get("app.name") . " - " . Yii::t("app", "Forgot Password");
         $message = $mailer->compose('forgotPassword', compact("subject", "user", "userKey"))->setTo($user->email)->setSubject($subject);
         // Sender by default: Support Email
         $fromEmail = MailHelper::from(Yii::$app->settings->get("app.supportEmail"));
         // Sender verification
         if (empty($fromEmail)) {
             return false;
         }
         $message->setFrom($fromEmail);
         $result = $message->send();
         // restore view path and return result
         $mailer->viewPath = $oldViewPath;
         return $result;
     }
     return false;
 }