nickterekhin / mailer

sendmail

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mailer

This solution using PHPMailer lib https://github.com/PHPMailer/PHPMailer

To config mailer please use this file /init/mail_init.php

$mail_init["smtp_host"]='smtp.gmail.com';

$mail_init['smtp_port']= '587';

$mail_init['smtp_username']='your SMTP userName';

$mail_init['smtp_password']='SMTP password';

$mail_init['smtp_auth']=true;

$mail_init['smtp_mailer']='smtp'; could be 'mail' it will be use standart PHP mail() function to send messages

$mail_init['from_name']=''; Sender Full Name

$mail_init['from_email']=''; Sender email address

About

sendmail


Languages

Language:PHP 74.9%Language:HTML 18.9%Language:CSS 4.9%Language:JavaScript 0.8%Language:Smarty 0.5%