Refactor SMS sending to use KavehNegar VerifyLookup templates
- Removed SmsTextResolver dependency from multiple services and controllers. - Introduced dispatchTemplate method in SmsService to handle SMS sending with templates. - Updated existing SMS sending logic across various services (OtpService, PreRegistrationController, ClinicInvitationService, PaymentManager, SecretaryController, RepresentationActionController) to utilize the new dispatchTemplate method. - Enhanced SmsMessageTemplate entity to include kavenegar_template and token_map fields. - Created migration to add new fields to the sms_message_templates table and populate them with existing data. - Updated SeedSmsMessageTemplatesCommand to handle new template structure. - Added documentation for the new SMS template structure and usage.
This commit is contained in:
@@ -310,10 +310,10 @@ class RepresentationActionController extends BaseController
|
||||
|
||||
// پیام خوشآمد به پزشک
|
||||
$siteName = $this->configRepo->get('site_name') ?: 'کلینیکپرو';
|
||||
$this->smsService->dispatchAsync(
|
||||
$this->smsService->dispatchTemplate(
|
||||
\App\Sms\Entity\SmsLog::TAG_WELCOME,
|
||||
$mobile,
|
||||
sprintf('دکتر %s عزیز، به %s خوش آمدید. پروفایل شما توسط نماینده ثبت شد.', $name, $siteName),
|
||||
tag: \App\Sms\Entity\SmsLog::TAG_WELCOME,
|
||||
['name' => $name, 'site' => $siteName],
|
||||
);
|
||||
|
||||
return $this->success(['uuid' => $doctor->getUuid()], 201);
|
||||
@@ -385,10 +385,10 @@ class RepresentationActionController extends BaseController
|
||||
|
||||
// پیام خوشآمد به مالک کلینیک
|
||||
$siteName = $this->configRepo->get('site_name') ?: 'کلینیکپرو';
|
||||
$this->smsService->dispatchAsync(
|
||||
$this->smsService->dispatchTemplate(
|
||||
\App\Sms\Entity\SmsLog::TAG_WELCOME,
|
||||
$mobile,
|
||||
sprintf('کلینیک %s به %s خوش آمد. پروفایل کلینیک شما توسط نماینده ثبت شد.', $name, $siteName),
|
||||
tag: \App\Sms\Entity\SmsLog::TAG_WELCOME,
|
||||
['name' => $name, 'site' => $siteName],
|
||||
);
|
||||
|
||||
return $this->success([
|
||||
|
||||
Reference in New Issue
Block a user