catalog/controller/account/register.php
içinde
Bul:
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate()) {
Bir alt satıre geçip ekle:
$mail = new Mail();
$mail->protocol = $this->config->get('config_mail_protocol');
$mail->parameter = $this->config->get('config_mail_parameter');
$mail->hostname = $this->config->get('config_smtp_host');
$mail->username = $this->config->get('config_smtp_username');
$mail->password = $this->config->get('config_smtp_password');
$mail->port = $this->config->get('config_smtp_port');
$mail->timeout = $this->config->get('config_smtp_timeout');
$mail->setTo(sprintf($this->request->post['email']));
$mail->setFrom(sprintf('Site.com Üyelik'));
$mail->setSender(sprintf('Site.com Üyelik Bilgileri'));
$mail->setSubject(sprintf('Yeni Üye Gaydı.'));
$mail->setText(strip_tags(html_entity_decode( "\r\n İsim : " . $this->request->post['firstname'] . "\r\n Soyisim : " . $this->request->post['lastname']. "\r\n Şifre : " . $this->request->post['password'], ENT_QUOTES, 'UTF-8')));
$mail->send();
Bu kodu
$mail->setText(strip_tags(html_entity_decode( "\r\n İsim : " . $this->request->post['firstname'] . "\r\n Soyisim : " . $this->request->post['lastname']. "\r\n Şifre : " . $this->request->post['password'], ENT_QUOTES, 'UTF-8')));
dosya içinde kayıtta istenilen seçenekler var. Onlardan hangilerini istiyorsan benim verdiğim gibi çoğalt. Üye olana yazdığı bilgileri email atar. Yedek almadan yapmak yok.