diff options
Diffstat (limited to 'SendGrid/SendGridMail/Transport/REST.cs')
-rwxr-xr-x | SendGrid/SendGridMail/Transport/REST.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/SendGrid/SendGridMail/Transport/REST.cs b/SendGrid/SendGridMail/Transport/REST.cs index 52fe336..3bb23a6 100755 --- a/SendGrid/SendGridMail/Transport/REST.cs +++ b/SendGrid/SendGridMail/Transport/REST.cs @@ -48,6 +48,11 @@ namespace SendGridMail.Transport _query.Add(new KeyValuePair<string, string>(key, value));
}
+ public void TestDeliver(ISendGrid Message)
+ {
+ new WebFileUpload(null).SendAttachments();
+ }
+
public void Deliver(ISendGrid message)
{
// TODO Fix this to include all recipients
|