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);
use MIME::Lite;
$email = MIME::Lite->new(From => $from,
To => $to,
Subject => $subject,
Type => 'multipart/mixed');
$email->attach(Type => 'TEXT',
Data => $message);