diff options
author | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-24 16:52:22 -0800 |
---|---|---|
committer | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-24 16:52:22 -0800 |
commit | cf275fca7c7c78364bf5031d0ab7dc01afdd51c4 (patch) | |
tree | af4d3d02a901242a836aa88d10dc44704105c4d2 | |
parent | 9b04e9c45445883508b699af481fd7c076ee0d17 (diff) | |
download | sendgrid-csharp-cf275fca7c7c78364bf5031d0ab7dc01afdd51c4.zip sendgrid-csharp-cf275fca7c7c78364bf5031d0ab7dc01afdd51c4.tar.gz sendgrid-csharp-cf275fca7c7c78364bf5031d0ab7dc01afdd51c4.tar.bz2 |
changed the access for the save message function, which is for internal use only
-rwxr-xr-x | SendGrid/SendGridMail/SendGrid.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SendGrid/SendGridMail/SendGrid.cs b/SendGrid/SendGridMail/SendGrid.cs index e3b992f..42214b7 100755 --- a/SendGrid/SendGridMail/SendGrid.cs +++ b/SendGrid/SendGridMail/SendGrid.cs @@ -518,7 +518,7 @@ namespace SendGridMail /// Helper function lets us look at the mime before it is sent
/// </summary>
/// <param name="directory">directory in which we store this mime message</param>
- public void SaveMessage(String directory)
+ internal void SaveMessage(String directory)
{
var client = new SmtpClient("localhost")
{
|