add newsletter

This commit is contained in:
2016-05-20 08:16:30 +02:00
parent 0b866917d5
commit e51f4a5934
27 changed files with 1120 additions and 16 deletions

View File

@@ -0,0 +1,32 @@
<?php
namespace backend\models;
use Yii;
use yii\base\Model;
use yii\web\UploadedFile;
/**
* ContactForm is the model behind the contact form.
* @property \Yii\web\UploadedFile $file
*/
class CustomerNewsLetterModel extends Model{
public $text;
public $subject;
public $allCustomer;
public function rules(){
return [
[['text','subject'],'required'],
['text','string'],
['subject','string'],
];
}
}

View File

@@ -0,0 +1,75 @@
<?php
namespace backend\models;
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use common\models\Newsletter;
/**
* NewsletterSearch represents the model behind the search form about `common\models\Newsletter`.
*/
class NewsletterSearch extends Newsletter
{
/**
* @inheritdoc
*/
public function rules()
{
return [
[['id_newsletter', 'status', 'sent'], 'integer'],
[['subject', 'body', 'sent_at', 'created_at', 'updated_at'], 'safe'],
];
}
/**
* @inheritdoc
*/
public function scenarios()
{
// bypass scenarios() implementation in the parent class
return Model::scenarios();
}
/**
* Creates data provider instance with search query applied
*
* @param array $params
*
* @return ActiveDataProvider
*/
public function search($params)
{
$query = Newsletter::find();
$dataProvider = new ActiveDataProvider([
'query' => $query,
'sort' =>[
'defaultOrder' =>[ 'created_at' => SORT_DESC ]
]
]);
$this->load($params);
if (!$this->validate()) {
// uncomment the following line if you do not want to return any records when validation fails
// $query->where('0=1');
return $dataProvider;
}
$query->andFilterWhere([
'id_newsletter' => $this->id_newsletter,
'status' => $this->status,
'sent' => $this->sent,
'sent_at' => $this->sent_at,
'created_at' => $this->created_at,
'updated_at' => $this->updated_at,
]);
$query->andFilterWhere(['like', 'subject', $this->subject])
->andFilterWhere(['like', 'body', $this->body]);
return $dataProvider;
}
}

View File

@@ -0,0 +1,75 @@
<?php
namespace backend\models;
use Yii;
use yii\base\Model;
use common\models\Card;
use common\models\Customer;
use common\models\Ticket;
use common\models\Account;
use yii\web\UploadedFile;
use common\components\Helper;
/**
* ContactForm is the model behind the contact form.
* @property \Yii\web\UploadedFile $file
*/
class NewsletterTestForm extends Model{
public $customer_name;
public $email;
public $newsletter;//init param
private $_customer;
public function rules(){
return [
[['customer_name','email'], 'required'],
[['email'], 'email'],
[['customer_name'], 'string'],
[['customer_name'], 'validateCustomer'],
];
}
public function attributeLabels(){
return [
'email' => "E-mail",
'customer_name' => "Vendég neve"
];
}
public function validateCustomer( $attribute, $params ) {
$customer = Customer::find()->andWhere(['like','name',$this->customer_name])->one();
if ( !isset($customer)){
$this->addError($attribute,"Vendég nem található");
}else{
$this->_customer = $customer;
}
}
public function sendEmail(){
$newsletter = $this->newsletter;
$message = \Yii::$app->mailer->compose ( );
$replacePairs = [
'{vendeg_neve}' => $this->_customer->name
];
$mailBody = $newsletter->body;
$mailBody = strtr($mailBody, $replacePairs );
$mailSubject = $newsletter->subject;
$mailSubject = strtr($mailSubject, $replacePairs );
$message
->setFrom ( [ \Yii::$app->params['newsletter_from'] => Helper::getCompanyName() ])
->setTo ( [
$this->email ])
->setHtmlBody( $mailBody )
->setSubject ( $mailSubject )
->send ();
}
}