14 lines
634 B
PHP
Executable File
14 lines
634 B
PHP
Executable File
<?php
|
|
// $output="<h3>Hello ".$emaildata['name']."<h3><br>";
|
|
// $output.="<h3>Welcome to WeCuro<h3><br>";
|
|
// $output.="<h3>Your account created successfully as a Patient.<h3><br>";
|
|
// $output.="<h3>Your Username:".$emaildata['email'].".<h3><br>";
|
|
// $output.="<h3>Your Password: ".$emaildata['password']."<h3><br>";
|
|
// $output.="<h3>login Url: ".$emaildata['link']."<h3><br>";
|
|
// echo $output;
|
|
|
|
$output='<h3>Hello, <span>'.$emaildata['name'].'</span></h3>';
|
|
$output.='<h4>Welcome to WeCuro, Your account has been created successfully as a Patient.</h4>';
|
|
$output.='<p>Username: <b>'.$emaildata['username'].'</b></p>';
|
|
echo $output;
|
|
?>
|