这是基于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.
 
 
 
 
 
 
colin 3936107340 upgrade: upgrade abp to 10.0.2 3 months ago
..
LINGYUN/Abp/Emailing/Platform feat(platform): 增加消息中心统一处理邮件短信消息. 1 year ago
FodyWeavers.xml feat(platform): 增加消息中心统一处理邮件短信消息. 1 year ago
FodyWeavers.xsd feat(platform): 增加消息中心统一处理邮件短信消息. 1 year ago
LINGYUN.Abp.Emailing.Platform.csproj upgrade: upgrade abp to 10.0.2 3 months ago
README.md feat(platform): 增加消息中心统一处理邮件短信消息. 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"
    }
  },
}

相关链接

其他