From 846e7e225e6d89d389e753bcc9250e8d8beff716 Mon Sep 17 00:00:00 2001 From: Sunil Pawar Date: Mon, 20 Nov 2023 17:52:14 +0530 Subject: [PATCH] Pass contact id to sendmail function --- CRM/Core/BAO/ActionSchedule.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Core/BAO/ActionSchedule.php b/CRM/Core/BAO/ActionSchedule.php index df6f784ded..ed0fd6f913 100644 --- a/CRM/Core/BAO/ActionSchedule.php +++ b/CRM/Core/BAO/ActionSchedule.php @@ -691,6 +691,7 @@ FROM civicrm_action_schedule cas 'subject' => $tokenRow->render('subject'), 'entity' => 'action_schedule', 'entity_id' => $schedule->id, + 'toContactID' => $toContactID, ]; $body_text = $tokenRow->render('body_text'); $mailParams['html'] = $tokenRow->render('body_html'); -- 2.25.1