A
Arjen
Hi,
For an message with variable values I'm using a string.
Like this:
string message = "Hi " + name + ",\n\n Here is your new password: " +
password;
Is there a way to do it like this:
string message = "Hi v1,\n\n Here is your new password: v2", name, password;
Hope that sombody knows what I want.
Thanks!
For an message with variable values I'm using a string.
Like this:
string message = "Hi " + name + ",\n\n Here is your new password: " +
password;
Is there a way to do it like this:
string message = "Hi v1,\n\n Here is your new password: v2", name, password;
Hope that sombody knows what I want.
Thanks!