1
1

Здравствуйте, как отправить сообщение посетителями сайта на почту администратору?

В курсе сказано читать документацию Codeignitor

 <?php

 defined('BASEPATH') OR exit('No direct script accsess allowed');

 class Contact extends MY_Controller {

 	public function __constract() {
 		parent::__constract();
 	}

 	public function index() {
 		$this->date['title'] = "Контакты"; // переопределили переменную из MY_Controller $this в каждом контроллере можно переопределять в зависимости от цели страницы (напр новости)

 		$this->load->library('email');

		$this->email->from('your@example.com', 'Your Name');
		$this->email->to('someone@example.com');
		$this->email->cc('another@another-example.com');
		$this->email->bcc('them@their-example.com');

		$this->email->subject('Email Test');
		$this->email->message('Testing the email class.');

		$this->email->send();


 		$this->load->view('template/header', $this->date);
	 	$this->load->view('contact', $this->date);
 		$this->load->view('template/footer');
 	}


 }

student_NMN8Zizp
3 years ago






Еще нет ответов