这是基于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.
 
 
 
 
 
 

1019 B

LINGYUN.Abp.Elsa.Activities.Emailing

Email sending activities integration module for Elsa workflow

Features

  • Provides SendEmailing activity for sending emails
    • Support sending to multiple recipients
    • Support template rendering for email content
    • Support JavaScript and Liquid syntax
    • Integration with ABP framework's IEmailSender interface
    • Integration with ABP framework's ITemplateRenderer interface for template rendering

Configuration and Usage

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

appsettings.json

{
    "Elsa": {
        "Emailing": true    // Enable email sending activities
    }
}

Activity Parameters

  • To: List of recipient email addresses
  • Subject: Email subject
  • Body: Email body content
  • Culture: Culture information
  • Template: Template name
  • Model: Model parameters used to format the template content

中文文档