/home/techb158/exp.abdallabala.com/application/autoload/Notify
Edit: /home/techb158/exp.abdallabala.com/application/autoload/Notify/Email.php (4711B)
CharSet = 'UTF-8';
$mail->SetFrom($sysEmail, $sysCompany);
$mail->AddReplyTo($sysEmail, $sysCompany);
return $mail;
}
public static function _log($userid, $email, $subject, $message, $iid = '0')
{
$date = date('Y-m-d H:i:s');
$d = ORM::for_table('sys_email_logs')->create();
$d->userid = $userid;
$d->sender = '';
$d->email = $email;
$d->subject = $subject;
$d->message = $message;
$d->date = $date;
$d->iid = $iid;
$d->save();
$id = $d->id();
return $id;
}
public static function _send(
$name,
$to,
$subject,
$message,
$uid = '0',
$iid = '0',
$cc = '',
$bcc = '',
$attachment_path = '',
$attachment_file = ''
) {
global $_app_stage;
self::_log($uid, $to, $subject, $message, $iid);
if ($_app_stage == 'Demo') {
return true;
}
$e = ORM::for_table('sys_emailconfig')->find_one(1);
$method = $e->method;
if ($method == 'smtp' || $method == 'phpmail') {
$mail = self::_init();
global $_app_stage;
if ($method == 'smtp') {
$mail->IsSMTP();
$mail->Host = $e['host'];
$mail->SMTPAuth = true;
$mail->Username = $e['username'];
$mail->Password = $e['password'];
$mail->SMTPSecure = $e['secure'];
$mail->Port = $e['port'];
}
$mail->AddAddress($to, $name);
if ($cc != '') {
$mail->AddAddress($cc);
}
if ($bcc != '') {
$mail->AddBCC($bcc);
}
if ($attachment_path != '') {
$mail->AddAttachment(
$attachment_path,
$attachment_file,
'base64',
'application/pdf'
);
if ($_app_stage == 'Dev') {
if (file_exists($attachment_path)) {
_log('file exist');
}
_log('file attached: ' . $attachment_path);
}
}
$mail->Subject = $subject;
$mail->MsgHTML($message);
try {
$mail->Send();
} catch (Exception $e) {
_log(
'An error occurred while sending email- ' . $e->getMessage()
);
}
} else {
global $config;
$sysEmail = $config['sysEmail'];
$sysCompany = $config['CompanyName'];
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
// Additional headers
$headers .=
'From: ' . $sysCompany . ' <' . $sysEmail . '>' . "\r\n";
if ($cc == '') {
} else {
$cc_parts = explode('@', $cc);
$cc_username = $cc_parts[0];
$headers .= 'To: ' . $cc_username . ' <' . $cc . '>' . "\r\n";
}
if ($bcc != '') {
$headers .= 'Bcc: ' . $bcc . '' . "\r\n";
}
mail($to, $subject, $message, $headers);
}
}
public static function _test()
{
$mail = self::_init();
$email = 'test@cloudonex.com';
$mail_subject = 'Test Email';
$name = 'CloudOnex';
$body = 'Test Email';
$mail->AddAddress($email, $name);
$mail->Subject = $mail_subject;
$mail->MsgHTML($body);
$mail->Send();
}
public static function _otp($otp, $name, $email)
{
$mail = self::_init();
global $config;
$sysCompany = $config['CompanyName'];
$mail_subject = $sysCompany . ' OTP (One Time Password)';
$body =
'Your ' .
$sysCompany .
' password has been verified and OTP is required to proceed further. Your current session OTP is ' .
$otp .
' and only valid for this session. If you didn\'t login, please contact us immediately.';
$mail->AddAddress($email, $name);
$mail->Subject = $mail_subject;
$mail->MsgHTML($body);
$mail->Send();
}
}