HELP with mql5 ALERT FORMAT

Hello to everyone !! I am wondering if someone can help me with some format on my email alerts from MT5.

I would like to receive this kind of format separate with spaces

ALERT> “Strength UP”
Symbol> BTCUSD (If possible in Bold with underline)
Time Frame> 1H
Date> 21/03/20
Time> 21:00
Market Price: 0,012

At the moment i have this format

Thanks in advance

void myAlert(string type, string message)
{
if(type == “print”)
Print(message);
else if(type == “error”)
{
Print(type+" | Strength “+Symbol()+”,"+IntegerToString(Period())+" | “+message);
}
else if(type == “order”)
{
}
else if(type == “modify”)
{
}
else if(type == “indicator”)
{
if(Send_Email) SendMail(“Strength”, type+” | “+Symbol()+ “,”+IntegerToString(Period())+” | "+message);
}
}

Here is the solution !!

Just i need to turn in BOLD the titles , please if you know how to setup letter in bold format , let me know !! THANKS!!

{

  if(Send_Email) SendMail("Strength UP",

  "\n" + "Symbol : "+Symbol()+

  "\n" + "Price : "+ DoubleToString(Last) +  

  "\n" + "Date : "+TimeToString(TimeLocal(),TIME_DATE )+

  "\n" + "Hour : "+TimeToString(TimeLocal(),TIME_MINUTES ) +message);

 }

}