FIXED_REDIRECTION_URL PROBLEM

This commit is contained in:
Srinivas-Saravanan 2024-12-02 15:28:13 +05:30
parent 18854c7427
commit cce304899a
3 changed files with 4 additions and 4 deletions

View File

@ -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];

View File

@ -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();
} }