Where exactly i have to replace
Hello maliming, Thanks for help. current solution is working fine but our app is not sending the confirmation email while creating new user. Consider following steps:
1- Email confirmation enabled
2- SMTP configured in Host Json 3- NOTE: We have overridden the User creation App service like below sample
public class MyIdentityUserAppService : IdentityUserAppService
{
public override async Task<IdentityUserDto> CreateAsync(IdentityUserCreateDto input)
{
IdentityUserDto identityUserDto = await base.CreateAsync(input);
return identityUserDto;
}
}
I have to configure gmail smtp. It is not working as per my current setup. Please find below the smtp details.
"Abp.Mailing.Smtp.Host": "smtp.gmail.com",
"Abp.Mailing.Smtp.Port": "587",
"Abp.Mailing.Smtp.UserName": "aztutedev11@gmail.com",
"Abp.Mailing.Smtp.Password": "$^&%^(*&FGJHGKJ", //Hased password
"Abp.Mailing.Smtp.Domain": "",
"Abp.Mailing.Smtp.EnableSsl": "true",
"Abp.Mailing.Smtp.UseDefaultCredentials": "false",
"Abp.Mailing.DefaultFromAddress": "aztutedev11@gmail.com",
"Abp.Mailing.DefaultFromDisplayName": "Aztute Command Center",
we are using "abp-lookup-input" for binding the drop-down control. Question is how to integrate and get both key and display name.
1- in any form, if Navigation modal clicked then form is freezing
Thanks for help
Thanks berkansasmaz. Consider my limited understanding about ABP framework, i have 2 points:
1- As per my understanding ABP support email template creation. if true assume user has created a template. 2- ABP we can setup smtp server and assume that smtp is configured
Based on these 2 assumption can you please give me sample code to send the email to user with filled tempalte email.
Query: We need provision to send an email to user when tenant/host admin register any new user. Please confirm the process.
1- Does ABP provide any capability to get a user relevent data from any abp + custom table (assuming custom tables have userid column) 2- Does ABP provide any wild search capability across all ABP and Custom tables to get data 3- If there is not internal api available then what is the best practice to create a dynamic query and get the data based on above 2 scenarios.