2021-11-06 18:11:44 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2022-01-18 15:05:42 +03:00
|
|
|
* Easy!Appointments - Online Appointment Scheduler
|
2021-11-06 18:11:44 +03:00
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
2021-11-06 18:11:44 +03:00
|
|
|
* @since v1.4.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Email messages library.
|
|
|
|
*
|
|
|
|
* Handles the email messaging related functionality.
|
|
|
|
*
|
|
|
|
* @package Libraries
|
|
|
|
*/
|
2023-11-29 12:24:09 +03:00
|
|
|
class Email_messages
|
|
|
|
{
|
2021-11-06 18:11:44 +03:00
|
|
|
/**
|
2023-03-13 11:06:18 +03:00
|
|
|
* @var EA_Controller|CI_Controller
|
2021-11-06 18:11:44 +03:00
|
|
|
*/
|
2023-03-13 11:06:18 +03:00
|
|
|
protected EA_Controller|CI_Controller $CI;
|
2021-11-06 18:11:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Email_messages constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
$this->CI = &get_instance();
|
2021-11-06 18:11:44 +03:00
|
|
|
|
|
|
|
$this->CI->load->model('admins_model');
|
|
|
|
$this->CI->load->model('appointments_model');
|
|
|
|
$this->CI->load->model('providers_model');
|
|
|
|
$this->CI->load->model('secretaries_model');
|
|
|
|
$this->CI->load->model('secretaries_model');
|
|
|
|
$this->CI->load->model('settings_model');
|
|
|
|
|
|
|
|
$this->CI->load->library('email');
|
|
|
|
$this->CI->load->library('ics_file');
|
|
|
|
$this->CI->load->library('timezones');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send an email with the appointment details.
|
|
|
|
*
|
|
|
|
* @param array $appointment Appointment data.
|
|
|
|
* @param array $provider Provider data.
|
|
|
|
* @param array $service Service data.
|
|
|
|
* @param array $customer Customer data.
|
|
|
|
* @param array $settings App settings.
|
|
|
|
* @param string $subject Email subject.
|
|
|
|
* @param string $message Email message.
|
2023-02-21 09:58:21 +03:00
|
|
|
* @param string $appointment_link Appointment unique URL.
|
2021-11-06 18:11:44 +03:00
|
|
|
* @param string $recipient_email Recipient email address.
|
|
|
|
* @param string $ics_stream ICS file contents.
|
|
|
|
* @param string|null $timezone Custom timezone.
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2023-05-04 19:02:40 +03:00
|
|
|
public function send_appointment_saved(
|
2021-11-06 18:11:44 +03:00
|
|
|
array $appointment,
|
|
|
|
array $provider,
|
|
|
|
array $service,
|
|
|
|
array $customer,
|
|
|
|
array $settings,
|
|
|
|
string $subject,
|
|
|
|
string $message,
|
2023-02-21 09:58:21 +03:00
|
|
|
string $appointment_link,
|
2021-11-06 18:11:44 +03:00
|
|
|
string $recipient_email,
|
|
|
|
string $ics_stream,
|
2023-12-22 13:35:41 +03:00
|
|
|
string $timezone = null,
|
2023-11-29 12:24:09 +03:00
|
|
|
): void {
|
2021-11-06 18:11:44 +03:00
|
|
|
$appointment_timezone = new DateTimeZone($provider['timezone']);
|
|
|
|
|
|
|
|
$appointment_start = new DateTime($appointment['start_datetime'], $appointment_timezone);
|
|
|
|
|
|
|
|
$appointment_end = new DateTime($appointment['end_datetime'], $appointment_timezone);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if ($timezone && $timezone !== $provider['timezone']) {
|
2023-05-04 19:09:57 +03:00
|
|
|
$custom_timezone = new DateTimeZone($timezone);
|
2021-11-06 18:11:44 +03:00
|
|
|
|
2023-05-04 19:09:57 +03:00
|
|
|
$appointment_start->setTimezone($custom_timezone);
|
|
|
|
$appointment['start_datetime'] = $appointment_start->format('Y-m-d H:i:s');
|
2021-11-06 18:11:44 +03:00
|
|
|
|
2023-05-04 19:09:57 +03:00
|
|
|
$appointment_end->setTimezone($custom_timezone);
|
|
|
|
$appointment['end_datetime'] = $appointment_end->format('Y-m-d H:i:s');
|
2021-11-06 18:11:44 +03:00
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
$html = $this->CI->load->view(
|
|
|
|
'emails/appointment_saved_email',
|
|
|
|
[
|
|
|
|
'subject' => $subject,
|
|
|
|
'message' => $message,
|
|
|
|
'appointment' => $appointment,
|
|
|
|
'service' => $service,
|
|
|
|
'provider' => $provider,
|
|
|
|
'customer' => $customer,
|
|
|
|
'settings' => $settings,
|
|
|
|
'timezone' => $timezone,
|
2023-12-22 13:35:41 +03:00
|
|
|
'appointment_link' => $appointment_link,
|
2023-11-29 12:24:09 +03:00
|
|
|
],
|
2023-12-22 13:35:41 +03:00
|
|
|
true,
|
2023-11-29 12:24:09 +03:00
|
|
|
);
|
2021-11-06 18:11:44 +03:00
|
|
|
|
2024-03-04 12:59:52 +03:00
|
|
|
$from_name = config('from_name') ?: $settings['company_name'];
|
|
|
|
$from_address = config('from_address') ?: $settings['company_email'];
|
|
|
|
$reply_to = config('reply_to') ?: $settings['company_email'];
|
|
|
|
|
|
|
|
$this->CI->email->from($from_address, $from_name);
|
|
|
|
|
|
|
|
if ($reply_to) {
|
|
|
|
$this->CI->email->reply_to($reply_to);
|
|
|
|
}
|
2021-11-06 18:11:44 +03:00
|
|
|
|
|
|
|
$this->CI->email->to($recipient_email);
|
|
|
|
|
|
|
|
$this->CI->email->subject($subject);
|
|
|
|
|
|
|
|
$this->CI->email->message($html);
|
|
|
|
|
2022-11-30 13:21:59 +03:00
|
|
|
$this->CI->email->attach($ics_stream, 'attachment', 'invitation.ics', 'text/vcalendar');
|
2021-11-06 18:11:44 +03:00
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!$this->CI->email->send(false)) {
|
2021-11-06 18:11:44 +03:00
|
|
|
throw new RuntimeException('Email was not sent: ' . $this->CI->email->print_debugger());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send an email with the appointment removal details.
|
|
|
|
*
|
|
|
|
* @param array $appointment Appointment data.
|
|
|
|
* @param array $provider Provider data.
|
|
|
|
* @param array $service Service data.
|
|
|
|
* @param array $customer Customer data.
|
|
|
|
* @param array $settings App settings.
|
|
|
|
* @param string $recipient_email Recipient email address.
|
|
|
|
* @param string|null $reason Removal reason.
|
|
|
|
* @param string|null $timezone Custom timezone.
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2023-05-04 19:02:40 +03:00
|
|
|
public function send_appointment_deleted(
|
2021-11-06 18:11:44 +03:00
|
|
|
array $appointment,
|
|
|
|
array $provider,
|
|
|
|
array $service,
|
|
|
|
array $customer,
|
|
|
|
array $settings,
|
|
|
|
string $recipient_email,
|
2023-11-29 12:24:09 +03:00
|
|
|
string $reason = null,
|
2023-12-22 13:35:41 +03:00
|
|
|
string $timezone = null,
|
2023-11-29 12:24:09 +03:00
|
|
|
): void {
|
2021-11-06 18:11:44 +03:00
|
|
|
$appointment_timezone = new DateTimeZone($provider['timezone']);
|
|
|
|
|
|
|
|
$appointment_start = new DateTime($appointment['start_datetime'], $appointment_timezone);
|
|
|
|
|
2023-05-04 19:09:57 +03:00
|
|
|
$appointment_end = new DateTime($appointment['end_datetime'], $appointment_timezone);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if ($timezone && $timezone !== $provider['timezone']) {
|
2023-05-04 19:09:57 +03:00
|
|
|
$custom_timezone = new DateTimeZone($timezone);
|
|
|
|
|
|
|
|
$appointment_start->setTimezone($custom_timezone);
|
|
|
|
$appointment['start_datetime'] = $appointment_start->format('Y-m-d H:i:s');
|
2021-11-06 18:11:44 +03:00
|
|
|
|
2023-05-04 19:09:57 +03:00
|
|
|
$appointment_end->setTimezone($custom_timezone);
|
|
|
|
$appointment['end_datetime'] = $appointment_end->format('Y-m-d H:i:s');
|
2021-11-06 18:11:44 +03:00
|
|
|
}
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
$html = $this->CI->load->view(
|
|
|
|
'emails/appointment_deleted_email',
|
|
|
|
[
|
|
|
|
'appointment' => $appointment,
|
|
|
|
'service' => $service,
|
|
|
|
'provider' => $provider,
|
|
|
|
'customer' => $customer,
|
|
|
|
'settings' => $settings,
|
|
|
|
'timezone' => $timezone,
|
2023-12-22 13:35:41 +03:00
|
|
|
'reason' => $reason,
|
2023-11-29 12:24:09 +03:00
|
|
|
],
|
2023-12-22 13:35:41 +03:00
|
|
|
true,
|
2023-11-29 12:24:09 +03:00
|
|
|
);
|
2021-11-06 18:11:44 +03:00
|
|
|
|
2024-03-04 12:59:52 +03:00
|
|
|
$from_name = config('from_name') ?: $settings['company_name'];
|
|
|
|
$from_address = config('from_address') ?: $settings['company_email'];
|
|
|
|
$reply_to = config('reply_to') ?: $settings['company_email'];
|
|
|
|
|
|
|
|
$this->CI->email->from($from_address, $from_name);
|
|
|
|
|
|
|
|
if ($reply_to) {
|
|
|
|
$this->CI->email->reply_to($reply_to);
|
|
|
|
}
|
2021-11-06 18:11:44 +03:00
|
|
|
|
|
|
|
$this->CI->email->to($recipient_email);
|
|
|
|
|
|
|
|
$this->CI->email->subject(lang('appointment_cancelled_title'));
|
|
|
|
|
|
|
|
$this->CI->email->message($html);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!$this->CI->email->send(false)) {
|
2021-11-06 18:11:44 +03:00
|
|
|
throw new RuntimeException('Email was not sent: ' . $this->CI->email->print_debugger());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send the account recovery details.
|
|
|
|
*
|
|
|
|
* @param string $password New password.
|
|
|
|
* @param string $recipient_email Recipient email address.
|
|
|
|
* @param array $settings App settings.
|
|
|
|
*/
|
2023-11-29 12:24:09 +03:00
|
|
|
public function send_password(string $password, string $recipient_email, array $settings): void
|
2021-11-06 18:11:44 +03:00
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
$html = $this->CI->load->view(
|
|
|
|
'emails/account_recovery_email',
|
|
|
|
[
|
|
|
|
'subject' => lang('new_account_password'),
|
|
|
|
'message' => str_replace('$password', '<strong>' . $password . '</strong>', lang('new_password_is')),
|
2023-12-22 13:35:41 +03:00
|
|
|
'settings' => $settings,
|
2023-11-29 12:24:09 +03:00
|
|
|
],
|
2023-12-22 13:35:41 +03:00
|
|
|
true,
|
2023-11-29 12:24:09 +03:00
|
|
|
);
|
2021-11-06 18:11:44 +03:00
|
|
|
|
2024-03-04 12:59:52 +03:00
|
|
|
$from_name = config('from_name') ?: $settings['company_name'];
|
|
|
|
$from_address = config('from_address') ?: $settings['company_email'];
|
|
|
|
$reply_to = config('reply_to') ?: $settings['company_email'];
|
|
|
|
|
|
|
|
$this->CI->email->from($from_address, $from_name);
|
|
|
|
|
|
|
|
if ($reply_to) {
|
|
|
|
$this->CI->email->reply_to($reply_to);
|
|
|
|
}
|
2021-11-06 18:11:44 +03:00
|
|
|
|
|
|
|
$this->CI->email->to($recipient_email);
|
|
|
|
|
|
|
|
$this->CI->email->subject(lang('new_account_password'));
|
|
|
|
|
|
|
|
$this->CI->email->message($html);
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!$this->CI->email->send(false)) {
|
2021-11-06 18:11:44 +03:00
|
|
|
throw new RuntimeException('Email was not sent: ' . $this->CI->email->print_debugger());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|