forked from mirrors/easyappointments
Renamed the email templates for more consistency
This commit is contained in:
parent
007e95ed7a
commit
3fa817d52d
4 changed files with 3 additions and 3 deletions
|
@ -118,7 +118,7 @@ class Email_messages {
|
||||||
$appointment_end->setTimezone($appointment_timezone);
|
$appointment_end->setTimezone($appointment_timezone);
|
||||||
}
|
}
|
||||||
|
|
||||||
$html = $this->CI->load->view('emails/appointment_details', [
|
$html = $this->CI->load->view('emails/appointment_saved_email', [
|
||||||
'email_title' => $subject,
|
'email_title' => $subject,
|
||||||
'email_message' => $message,
|
'email_message' => $message,
|
||||||
'appointment_service' => $service['name'],
|
'appointment_service' => $service['name'],
|
||||||
|
@ -216,7 +216,7 @@ class Email_messages {
|
||||||
$appointment_start->setTimezone($appointment_timezone);
|
$appointment_start->setTimezone($appointment_timezone);
|
||||||
}
|
}
|
||||||
|
|
||||||
$html = $this->CI->load->view('emails/delete_appointment', [
|
$html = $this->CI->load->view('emails/appointment_deleted_email', [
|
||||||
'appointment_service' => $service['name'],
|
'appointment_service' => $service['name'],
|
||||||
'appointment_provider' => $provider['first_name'] . ' ' . $provider['last_name'],
|
'appointment_provider' => $provider['first_name'] . ' ' . $provider['last_name'],
|
||||||
'appointment_date' => $appointment_start->format($date_format . ' ' . $time_format),
|
'appointment_date' => $appointment_start->format($date_format . ' ' . $time_format),
|
||||||
|
@ -258,7 +258,7 @@ class Email_messages {
|
||||||
array $settings
|
array $settings
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
$html = $this->CI->load->view('emails/new_password', [
|
$html = $this->CI->load->view('emails/account_recovery_email', [
|
||||||
'email_title' => lang('new_account_password'),
|
'email_title' => lang('new_account_password'),
|
||||||
'email_message' => str_replace('$password', '<strong>' . $password . '</strong>', lang('new_password_is')),
|
'email_message' => str_replace('$password', '<strong>' . $password . '</strong>', lang('new_password_is')),
|
||||||
'company_name' => $settings['company_name'],
|
'company_name' => $settings['company_name'],
|
||||||
|
|
Loading…
Reference in a new issue