I am creating an application which will send an User Id and Auto Generated Password to the user via email. I have the User Id and Password generated with me and the Email template as well. I want to append these data in to a HTML template file.
string emailData = "Hi " + UserName + " Please use this " + Password + "as your password to login in to the Application.";
I want to add this string to a span tag of the HTML template.