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

@ -34,15 +34,15 @@ class Email extends BaseConfig
/**
* SMTP Username
*/
public string $SMTPUser = 'web@vijayabharathambooks.com';
//public string $SMTPUser = 'venbalap08@gmail.com';
public string $SMTPUser = 'web@vijayabharathambooks.com';
// public string $SMTPUser = 'venbalap08@gmail.com';
/**
* SMTP Password
*/
public string $SMTPPass = 'Sz9VueQ2iLgH';
//public string $SMTPPass = 'bqhvujeauokgcdxt';
// public string $SMTPPass = 'bqhvujeauokgcdxt';
/**
* SMTP Port

View File

@ -681,7 +681,6 @@ class Notifications extends BaseController
$history_child_id = $NotificationModel->save_notification_history_child($history_child_data);
$emailResult = $notification->sendEmail($emailData);
if (isset($emailResult['success']) && !empty($emailResult['success'])) {
$history_msg = 'Email sent successfully';
$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('S.sub_id =',$subscriptionId)
->where('nhc.sent_time >=', date('Y-m-d', strtotime('-30 days')))
->where('nhc.receiving_status = ',1)
->get()->getResultArray();
}