FIXED_REDIRECTION_URL PROBLEM
This commit is contained in:
parent
18854c7427
commit
cce304899a
@ -681,7 +681,6 @@ class Notifications extends BaseController
|
|||||||
$history_child_id = $NotificationModel->save_notification_history_child($history_child_data);
|
$history_child_id = $NotificationModel->save_notification_history_child($history_child_data);
|
||||||
|
|
||||||
$emailResult = $notification->sendEmail($emailData);
|
$emailResult = $notification->sendEmail($emailData);
|
||||||
|
|
||||||
if (isset($emailResult['success']) && !empty($emailResult['success'])) {
|
if (isset($emailResult['success']) && !empty($emailResult['success'])) {
|
||||||
$history_msg = 'Email sent successfully';
|
$history_msg = 'Email sent successfully';
|
||||||
$history_child_updatedata = ['receiving_status'=>1,'result'=>$history_msg];
|
$history_child_updatedata = ['receiving_status'=>1,'result'=>$history_msg];
|
||||||
|
|||||||
@ -326,6 +326,7 @@ public function customerGroupQueryExecution($queries){
|
|||||||
->where('C.customer_id =',$customerId)
|
->where('C.customer_id =',$customerId)
|
||||||
->where('S.sub_id =',$subscriptionId)
|
->where('S.sub_id =',$subscriptionId)
|
||||||
->where('nhc.sent_time >=', date('Y-m-d', strtotime('-30 days')))
|
->where('nhc.sent_time >=', date('Y-m-d', strtotime('-30 days')))
|
||||||
|
->where('nhc.receiving_status = ',1)
|
||||||
->get()->getResultArray();
|
->get()->getResultArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user