Can I check it remotely? (because I can't reproduce it) shiwei.liang@volosoft.com
Hi,
You can create a new project named YourProjectName.Sms.Amazon, just like: https://github.com/abpframework/abp/tree/dev/framework/src/Volo.Abp.Sms.Aliyun
And you can use it anywhere via project reference.
Hi,
you can put the class in the domain project,
where we need to call this
I didn't get it, can you explain it in detail? when you need to send a message you can inject an ISmsSender interface to use it.
May I ask what suite version are you using?
Hi,
I will check it, and please make the repo to private,it includes your AbpLicenseCode, I think you don't want to expose it.
Hi,
Do you mean using Amazon SMS service https://docs.aws.amazon.com/sns/latest/dg/sns-mobile-phone-number-as-subscriber.html?
Actually, you can use any SMS service you want.
For example:
[Dependency(ReplaceServices = true)]
public class AmazonSmsSender : ISmsSender, ITransientDependency
{
public virtual async Task SendAsync(SmsMessage smsMessage)
{
//Using amazon SMS service to send a message
}
}
Hi,
I can't reproduce the problem, can you share the full steps to reproduce it? thanks.
Hi,
You can check this project: https://github.com/abpframework/eShopOnAbp
It is a microservice that uses EF Core and MongoDB.