hi
You can override the default SMTP
email sending service and log some information.
The issue might not be with your application, so check the Mail send output in the logs to troubleshoot the problem.
Additionally, you can try using MailKit
or the SendGrid HTTP API to send the emails.
We don't recommend that you use the SmtpClient class for new development because SmtpClient doesn't support many modern protocols. Use MailKit(https://abp.io/docs/latest/framework/infrastructure/mail-kit) or other libraries instead. For more information, see https://github.com/dotnet/platform-compat/blob/master/docs/DE0005.md
Thanks
hi
The built-in modules(OpenIddict, Identity.Pro...
) will have some PeriodicBackgroundWorkers
.
hi
Can you test your code in the template project and share it?
I will download and check your code.
liming.ma@volosoft.com
Thanks
hi
What is your abp packages version?
app.UsePathBase("/Blazor");
What is the reason you use this?
We have used MapAbpStaticAssets
to replace UseStaticFiles
app.UsePathBase("/Blazor");
app.UseStaticFiles();
app.UseRouting();
Can you share a project I can download and check it?
liming.ma@volosoft.com Thanks
hi
ABP hangfire module will use HangfirePeriodicBackgroundWorkerAdapter
to execute your/modules PeriodicBackgroundWorkers
.
Maybe we can remove HangfirePeriodicBackgroundWorkerAdapter
and execute the worker directly. I will check this.
However, all workers are still listed in the Hangfire dashboard.
Thanks.
hi
You can pass the __tenant
parameter to the HTTP request manually before getting an access token.
hi
Could you provide more information about your case?
Thanks.
hi
Can you try this?
GetEntityTypes
and GetProperties
https://github.com/abpframework/abp/issues/18354#issuecomment-1840172073
Thanks