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 | e8df320eaca9e0c2d23e4819cdf55c66bf3b7d8d (patch) | |
tree | 8f924eec63e3ef67b0e1a32779a433bbdd2e9a92 | |
parent | bfae17d49a3a9b3688a78b7f92506cf40cbc9bb6 (diff) | |
download | sendgrid-csharp-e8df320eaca9e0c2d23e4819cdf55c66bf3b7d8d.zip sendgrid-csharp-e8df320eaca9e0c2d23e4819cdf55c66bf3b7d8d.tar.gz sendgrid-csharp-e8df320eaca9e0c2d23e4819cdf55c66bf3b7d8d.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")
{
|