I am making a mail program where I would like to replace **NAME**
with the name of the reciepient. I already tried this:
string mail = "hello **NAME**, how are you doing?";
mail.Replace("**NAME**", Reciepient.Name);
but it isn't working and just leaves the string untouched.
does anyone have any ideas?