Ernes
Tech
Register
Login
Jobs
Search
News
Articles
Videos
Shop
Home
Articles
Details
+1 (216)-435-0788
Join the Community
How to use a Text File as a Template to Send Email in dotnet core 2
Login to See the Rest of the Answer
Answer:
One way to accomplish this is by creating a text file and defining your template wrapped in a pair of double hash symbols
For Example:
Name: ##Name##
E-Mail Address: ##Email##
Home Phone: ##Phone##
Comments: ##Comments##
After you create a text file in your project and have typed your template as shown in 2, then you would write your C# code like this;
using System.IO // For reading the file
using System.Net.Mail //Sending the Email
//First read the file
string myFile = Server.MapPath("~/App_Directory/YourTextFileName.txt");
string mailBody = File.ReadAllText(myFile);
mailBody = mailBody.Replace("##Name##","Jack");
mailBody = mailBody.Replace("##E-Mail Address##","
[email protected]
");
Go on and implement this until you see fit.
Write an Article
Written By:
Ernes
SoftwareDeveloper
Views:
385
70
Notify Me of New Posts
×
We Recieved Your Request. Thank you.
We'll never share your email with anyone else.
Submit
You Liked This Article
No Login Required!
If you log in, you will be notified when someone leaves a comment.
Other users would like to know if this solution helped you.
Post Comment
Login With Google
Login With LinkedIn
Login With Microsoft
Login With GitHub
Top
© 2023 - ErnesTech LLC-
Privacy
+1 (216)-435-0788
English (United States)
Spanish (Spain)
French (France)
Portuguese (Brazil)
Chinese (China)
Turkish (Turkey)
German (Germany)
Jobs
Search
News
Articles
Videos
Shop
Contact
Sign Up
Login
Grid-Method Tools
PDF to HTML Converter
Forums
How Can We Improve this Site?
2 + 4 =
Submit