这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

784 B

LINGYUN.Abp.Elsa.Activities.Sms

SMS activities integration module for Elsa workflow

Features

  • Provides SendSms activity for sending SMS messages
    • Support sending to multiple phone numbers
    • Support custom message properties
    • Support JavaScript, JSON, and Liquid syntax
    • Integration with ABP framework's ISmsSender interface

Configuration and Usage

[DependsOn(
    typeof(AbpElsaActivitiesSmsModule)
    )]
public class YouProjectModule : AbpModule
{
}

appsettings.json

{
    "Elsa": {
        "Sms": true    // Enable SMS activities
    }
}

Activity Parameters

  • To: List of recipient phone numbers
  • Message: SMS content
  • Properties: Additional properties (advanced option)

中文文档