Fix: change send mail function names - register bank info, register done

This commit is contained in:
2018-09-20 18:21:18 +09:00
parent a27eaa37d2
commit 0606d34d16
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ $count = count_registered_player($maestroID);
update_count_registered_player($maestroID, $count); update_count_registered_player($maestroID, $count);
$maestro_data = get_maestro_data($maestroID); $maestro_data = get_maestro_data($maestroID);
sendMailRegistered($maestro_data["name"], $maestro_data["email"]); sendMailRegisterDone($maestro_data["name"], $maestro_data["email"]);
send_result_success(); send_result_success();
exit; exit;
+1 -1
View File
@@ -29,7 +29,7 @@ if($maestroID === null) {
exit; exit;
} }
sendMailBankInfo($maestro_name, $email, $account_type); sendMailRegisterBankInfo($maestro_name, $email, $account_type);
send_result_success(); send_result_success();
exit; exit;