created a mail template in which I have kept 1 link if mail is sent to the manager he needs to approve that if he clicks on that link it should navigate to the application approval page. How to do this configuration in the .net entity framework core I created values.cs in that I have given a URL string for navigating to the application and wherever I want I'm passing that string URL in the method.
any settings are needed in appsetting.json
Tuhin PaulPosted Mar 25, 2023, 12:43 AM
In your .NET Entity Framework Core application, you can define a method in your application that takes a URL string as a parameter and navigates the user to that URL when called. You can use the Process.Start method in C# to launch a new browser window and navigate to the URL.
Tuhin PaulPosted Mar 25, 2023, 12:42 AM
In your mail template, include a hyperlink to the application approval page and set the link's URL to the value of the URL string you defined in values.cs.