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.
|
|
2 months ago | |
|---|---|---|
| .. | ||
| LINGYUN/Abp/Emailing/Platform | 1 year ago | |
| FodyWeavers.xml | 1 year ago | |
| FodyWeavers.xsd | 1 year ago | |
| LINGYUN.Abp.Emailing.Platform.csproj | 2 months ago | |
| README.md | 1 year ago | |
README.md
LINGYUN.Abp.Emailing.Platform
abp框架邮件发送接口IEmailSender的消息处理平台实现
通过平台服务接口实现邮件消息管理,发送,查询等功能
配置使用
模块按需引用
[DependsOn(typeof(AbpEmailingPlatformModule))]
public class YouProjectModule : AbpModule
{
// other
}
配置项说明
{
"RemoteServices": {
"Platform": {
"BaseUrl": "http://127.0.0.1:30025",
"IdentityClient": "InternalServiceClient",
"UseCurrentAccessToken": "False"
}
},
"IdentityClients": {
"InternalServiceClient": {
"Authority": "http://127.0.0.1:44385",
"ClientId": "InternalServiceClient",
"ClientSecret": "1q2w3e*",
"GrantType": "client_credentials",
"RequireHttps": "False",
"Scope": "lingyun-abp-application"
}
},
}