いくつかのデータ (確認キー、URL、異なるメッセージなど) を含む 10 個の変数があります。
$confirmation_key = "http://www.example.com/?key=127e9kK";
$web_url = "www.example.com";
$welcome_message = "Hello, welcome to our program!";
$show_now の内容をコードに置き換えさせたいので、一例を書きます。
$show_now = "Hi, thank you for registration, please check url: {confirmation_key}. Best regards {web_url}";
次のように置き換える必要があります。
$show_now = "Hi, thank you for registration, please check url: http://www.example.com/?key=127e9kK. Best regards www.example.com";