I put this in the code, with my actual email address. Put strategy on 5 min bar chart. The diamond printed but I received no email.
Suggestions?
Regards,
Duke
if (SMA(50)[0] > SMA(50)[1])
{
DrawDiamond("My diamond" + CurrentBar, false, 0, Low[0] + -2 * TickSize, Color.Blue);
SendMail("", "email addr here", "test alert", "success");


Comment