hi
I see, you can follow the https://github.com/alkampfergit/DotNetCoreOauth2 to get an access token and to override the IEmailSender service to send the email.
context.Services.Replace(ServiceDescriptor.Singleton<IEmailSender, YourOffice365EmailSender>());
public class YourOffice365EmailSender : EmailSenderBase
{
public YourOffice365EmailSender(ICurrentTenant currentTenant, IEmailSenderConfiguration configuration, IBackgroundJobManager backgroundJobManager)
: base(currentTenant, configuration, backgroundJobManager)
{
}
protected override Task SendEmailAsync(MailMessage mail)
{
return Task.CompletedTask;
}
}
Thanks.
hi
Do you get any exceptions/errors?
Thanks.
hi
There is no organization info for your current user.
Can you check and share the Lexarius Limited account info from https://abp.io/my-organizations
Lexarius Limited should be in the Developers section.
Login info:
Name: Lexarius Limited
Surname:
Username: lexarius
Email Address: app-access@lexarius.com
Organization:
Thanks.
hi
When we login we are encountering 2 different issues. One being we get stuck in a redirect loop and the other is we are just logged in to the host admin, which I assume is because there is no tenant being resolved.
Can you share an online URL to reproduce this problem?
liming.ma@volosoft.com
Thanks.
试试 https://localhost:44353/global.js呢?
MonacoBundleScriptContributor应该在Blazor项目中
如果可能请分享一个简单的项目复现问题
liming.ma@volosoft.com
hi
This exception happens if the current user has session permission but has not updated the permission.
We will fix it in the next patch version.
Your Question Credits have been refunded.
Thanks.
Thanks. I will check and fix it. 👍
Hi
Can you check your wwwroot folder to see if global-scripts.js and global-styles.cs files exist?
Can you try to change
bundle.AddFiles("~/global-scripts.js");
bundle.AddFiles("~/global-scripts.css");
to
bundle.AddFiles("/global-scripts.js");
bundle.AddFiles("/global-scripts.css");
Also, remove the code below:
你好
HTTP请求global.js 返回什么? 后端的日志是?
谢谢
hi
Here is an article about multiple time zones. Can you check it first?
https://abp.io/community/posts/developing-a-multitimezone-application-using-the-abp-framework-zk7fnrdq
Thanks.