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
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
IEmailSenderinterface - Integration with ABP framework's
ITemplateRendererinterface 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