Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my $email = "email@domain.com";
####################
my ($confirmation_email_print);
## Confirmation email
$confirmation_email_print = "
Dear $first_name,\n
Thank you for registering with Medical-Book.co.uk.
Login URL: [URL unfurl="true"]http://medical-book.co.uk/Login_And_Register/Login.htm\n[/URL]
Username: $choose_username
Password: $choose_password\n
> Medical-Book.co.uk ( $date_time ) <
";
## Send confirmation email
my ($confirmation_email);
use MIME::Lite;
$confirmation_email = MIME::Lite->new(From => 'Medical-Book.co.uk',
To => "$email",
Subject => 'Registration Confirmation',
Type => 'multipart/mixed');
$confirmation_email->attach(Type => 'TEXT',
Data => "$confirmation_email_print");
$confirmation_email->send();
####################