Esempio n. 1
0
 /// <summary>
 /// Use to open a native email request.
 /// </summary>
 /// <param name="to">The email the message is to.</param>
 /// <param name="subject">The subject of the email.</param>
 /// <param name="body">The body of the email.</param>
 public static void Send(string to, string subject, string body)
 {
     if (plugin != null)
     {
         plugin.Send(to, subject, body);
     }
 }
Esempio n. 2
0
 public void Send(string to, string subject, string body)
 {
     native.Send(to, subject, body);
 }