Do not send an email to customer if no email is provided.
This commit is contained in:
parent
bd9b5f196a
commit
e4774ee991
1 changed files with 8 additions and 8 deletions
|
@ -85,7 +85,7 @@ class Notifications {
|
||||||
$ics_stream = $this->CI->ics_file->get_stream($appointment, $service, $provider, $customer);
|
$ics_stream = $this->CI->ics_file->get_stream($appointment, $service, $provider, $customer);
|
||||||
|
|
||||||
// Notify customer.
|
// Notify customer.
|
||||||
$send_customer = filter_var(
|
$send_customer = ! empty($customer['email']) && filter_var(
|
||||||
setting('customer_notifications'),
|
setting('customer_notifications'),
|
||||||
FILTER_VALIDATE_BOOLEAN
|
FILTER_VALIDATE_BOOLEAN
|
||||||
);
|
);
|
||||||
|
@ -232,7 +232,7 @@ class Notifications {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Notify customer.
|
// Notify customer.
|
||||||
$send_customer = filter_var(
|
$send_customer = ! empty($customer['email']) && filter_var(
|
||||||
setting('customer_notifications'),
|
setting('customer_notifications'),
|
||||||
FILTER_VALIDATE_BOOLEAN
|
FILTER_VALIDATE_BOOLEAN
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue