Browse Source

[Site] Problème formulaire de contact

master
Guillaume Bourgeois 11 months ago
parent
commit
7131100c41
2 changed files with 14 additions and 1 deletions
  1. +13
    -0
      common/forms/ContactForm.php
  2. +1
    -1
      frontend/controllers/SiteController.php

+ 13
- 0
common/forms/ContactForm.php View File

@@ -104,4 +104,17 @@ class ContactForm extends Model
);
}

public function sendEmailAdmin()
{
return Yii::$app->mailerService->sendAdmin(
'Contact : ' . $this->subject,
'contact',
[
'content' => $this->body,
'name' => $this->name
],
$this->email
);
}

}

+ 1
- 1
frontend/controllers/SiteController.php View File

@@ -300,7 +300,7 @@ class SiteController extends FrontendController
$model = new ContactForm();
$messageSent = false;
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
$model->sendEmail(Yii::$app->parameterBag->get('adminEmail'));
$model->sendEmailAdmin();
$messageSent = true;
}


Loading…
Cancel
Save