作者:vechersky
项目:do
public function actionContact()
{
$model = new ContactForm();
if ($model->load(\Yii::$app->request->post()) && $model->validate()) {
\Yii::$app->common->sendMail($model->subject, $model->body);
}
return $this->render('contact', ['model' => $model]);
}
作者:wangjst
项目:PHPST
/**
* @param array $contactData
*/
public function submit(array $contactData)
{
$contactForm = new ContactForm();
foreach ($contactData as $field => $value) {
$inputType = $field === 'body' ? 'textarea' : 'input';
$this->actor->fillField($inputType . '[name="' . $contactForm->formName() . '[' . $field . ']"]', $value);
}
$this->actor->click('contact-button');
}
作者:nsande
项目:Yii2-AspectMoc
public function actionContact()
{
$model = new ContactForm();
if ($model->load($_POST) && $model->contact(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', 'Thank you for contacting us. We will respond to you as soon as possible.');
return $this->refresh();
} else {
return $this->render('contact', array('model' => $model));
}
}
作者:sapg
项目:distributiv
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->contact(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('contactFormSubmitted');
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
作者:sergey-ex
项目:golde
public function actionFeedback()
{
$model = new ContactForm();
if (Yii::$app->request->isAjax && $model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->settings->get('main.supportEmail'))) {
return 'Спасибо за ваше сообщение, мы обязательно ответим вам в ближайшее время.';
} else {
return 'Что то пошло не так :( Попробуйте позднее';
}
}
return 'Что то пошло не так :(';
}
作者:sgsan
项目:yii.projec
public function actionContact()
{
$model = new ContactForm();
if ($model->load(\Yii::$app->request->post()) && $model->validate()) {
$body = " <div>Body: <b> " . $model->body . " </b></div>";
$body .= " <div>Email: <b> " . $model->email . " </b></div>";
\Yii::$app->common->sendMail($model->subject, $body);
print "Send success";
die;
}
return $this->render("contact", ['model' => $model]);
}
作者:pers130
项目:yi
public function actionContact()
{
$model = new ContactForm();
if ($model->load(\Yii::$app->request->post()) && $model->validate()) {
$body = '<div>Body: <b>' . $model->body . ' </b></div>';
$body .= '<div>Email: <b>' . $model->email . ' </b></div>';
\Yii::$app->common->sendMail($model->subject, $body);
print 'Send success';
}
return $this->render('contact', ['model']);
//return $this->render('inner');
}
作者:Krinnerio
项目:sho
/**
* Contact.
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(\Yii::$app->request->post()) && $model->validate()) {
$success = $model->sendEmail(\Yii::$app->params['adminEmail']);
if ($success) {
\Yii::$app->session->setFlash('success', 'Your message has been sent!');
$this->refresh('#form');
}
}
return $this->render('contact', ['model' => $model]);
}
作者:ricardorsierr
项目:personalContro
/**
* Displays the contact static page and sends the contact email.
*
* @return string|\yii\web\Response
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->contact(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', 'Thank you for contacting us. We will respond to you as soon as possible.');
} else {
Yii::$app->session->setFlash('error', 'There was an error sending email.');
}
return $this->refresh();
}
return $this->render('contact', ['model' => $model]);
}
作者:ArtTu
项目:yii2-portfolio-landin
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post())) {
if ($model->contact(Yii::$app->params['adminEmail'])) {
Yii::$app->getSession()->setFlash('alert', ['body' => Yii::t('frontend', 'Thank you for contacting us. We will respond to you as soon as possible.'), 'options' => ['class' => 'alert-success']]);
return $this->refresh();
} else {
Yii::$app->getSession()->setFlash('alert', ['body' => \Yii::t('frontend', 'There was an error sending email.'), 'options' => ['class' => 'alert-danger']]);
}
}
return $this->render('contact', ['model' => $model]);
}
作者:firdow
项目:yii2-advanced-templat
/**
* Displays the contact static page and sends the contact email.
*
* @return string|\yii\web\Response
*/
public function actionContact()
{
$model = new ContactForm();
if (!$model->load(Yii::$app->request->post()) || !$model->validate()) {
return $this->render('contact', ['model' => $model]);
}
if (!$model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('error', Yii::t('app', 'There was some error while sending email.'));
return $this->refresh();
}
Yii::$app->session->setFlash('success', Yii::t('app', 'Thank you for contacting us. We will respond to you as soon as possible.'));
return $this->refresh();
}
作者:cakpe
项目:spk-th
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', 'Terima kasih sudah menghubungi kami. Pertanyaan anda akan kami jawab secepatnya.. ');
} else {
Yii::$app->session->setFlash('error', 'Maaf pesan gagal dikirim.coba ulangi lagi.');
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
作者:ninjact
项目:ninjacto.co
/**
* Displays contact page.
*
* @return mixed
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', ['type' => 'success', 'duration' => 12000, 'icon' => 'fa fa-envelope', 'message' => 'Thank you for contacting us. We will respond to you as soon as possible.', 'title' => 'Sending Message']);
} else {
Yii::$app->session->setFlash('error', ['type' => 'danger', 'duration' => 12000, 'icon' => 'fa fa-envelope', 'message' => 'There was an error sending email.', 'title' => 'Sending Message']);
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
作者:nguyentuansie
项目:phutungot
/**
* Displays contact page.
*
* @return mixed
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', 'Cảm ơn bạn đã liên hệ với chúng tôi. Chúng tôi sẽ liên hệ lại với bạn trong thời gian sớm nhất.');
} else {
Yii::$app->session->setFlash('error', 'Có lỗi trong quá trình gửi mail.');
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
作者:radiata-cm
项目:radiat
/**
* Displays contact page.
*
* @return mixed
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', Yii::t('c/radiata/contact', 'Thank you'));
} else {
Yii::$app->session->setFlash('error', Yii::t('c/radiata/contact', 'Errors'));
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
作者:lanf
项目:testgit
public function testSendEmail()
{
$model = new ContactForm();
$model->attributes = ['name' => 'Tester', 'email' => 'tester@example.com', 'subject' => 'very important letter subject', 'body' => 'body of current message'];
expect_that($model->sendEmail('admin@example.com'));
// using Yii2 module actions to check email was sent
$this->tester->seeEmailIsSent();
$emailMessage = $this->tester->grabLastSentEmail();
expect('valid email is sent', $emailMessage)->isInstanceOf('yii\\mail\\MessageInterface');
expect($emailMessage->getTo())->hasKey('admin@example.com');
expect($emailMessage->getFrom())->hasKey('tester@example.com');
expect($emailMessage->getSubject())->equals('very important letter subject');
expect($emailMessage->toString())->contains('body of current message');
}
作者:sowander
项目:mi
/**
* Displays contact page.
*
* @return mixed
*/
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post())) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', 'Спасибо за обращение, мы ответим на ваше сообщение так быстро на сколько это возможно');
} else {
Yii::$app->session->setFlash('error', 'Произошла ошибка отправки письма');
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
作者:VitaliyProda
项目:h
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
Yii::$app->session->setFlash('success', "Дякую, що написали нам. Ми зв'яжимось з вами.");
} else {
Yii::$app->session->setFlash('error', 'Виникла помилка при відправці листа. Будь ласка спробуйте пізніше');
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}
作者:jazzlevi
项目:yii-angula
public function actionContact()
{
$model = new ContactForm();
if ($model->load(Yii::$app->getRequest()->getBodyParams(), '') && $model->validate()) {
if (true) {
$response = ['flash' => ['class' => 'success', 'message' => 'Thank you for contacting us. We will respond to you as soon as possible.']];
} else {
$response = ['flash' => ['class' => 'error', 'message' => 'There was an error sending email.']];
}
return $response;
} else {
$model->validate();
return $model;
}
}
作者:Alpha-Hydr
项目:tc-alph
/**
* Displays contact page.
*
* @return mixed
*/
public function actionContact()
{
$this->pageDescription = 'Если у вас есть деловое предложение или другие вопросы, пожалуйста, заполните форму на странице, чтобы связаться с нами.';
$model = new ContactForm();
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if ($model->sendEmail(Yii::$app->params['infoEmail'])) {
Yii::$app->session->setFlash('success', 'Ваше сообщение было отправлено.<br/> Наши сотрудники в кратчайшее время свяжуться с Вами по электронной почте, которая была указана в форме. Благодарим Вас за обращение к нам.');
} else {
Yii::$app->session->setFlash('error', 'Oшибка отправки электронной почты.');
}
return $this->refresh();
} else {
return $this->render('contact', ['model' => $model]);
}
}