Exemplo n.º 1
0
 public RFGenericEmail(RFEmailConfig config, string body) : base(config)
 {
     Body = body;
 }
Exemplo n.º 2
0
 public RFEntryNotificationEmail(RFEmailConfig config, string message, string url) : base(config)
 {
     Message = message;
     Url     = url;
 }
Exemplo n.º 3
0
 protected RFEmail(RFEmailConfig config)
 {
     Config = config;
 }