diff options
-rw-r--r-- | include/functions.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/functions.php b/include/functions.php index 7141ec7..0559895 100644 --- a/include/functions.php +++ b/include/functions.php @@ -73,10 +73,11 @@ function mymail($uid,$subject,$message) $subject = "$EmailName".$subject; /* standard greeting */ - $header = "Hello ...\n\n"; + $name = DB_get_name('userid',$uid); + $header = "Hello $name\n\n"; /* and standard goodbye */ - $footer = "\n\nHave a nice day\n". + $footer = "\nHave a nice day\n". " your E-Doko service department\n\n". "-- \n". "You can change your mail delivery mode in the preference menu.\n". |