25 lines
460 B
C#
25 lines
460 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Net.Mail;
|
||
|
|
using zero.Core.Entities;
|
||
|
|
|
||
|
|
namespace zero.Core.Extensions
|
||
|
|
{
|
||
|
|
public static class MailExtensions
|
||
|
|
{
|
||
|
|
//public static string Add(this AttachmentCollection attachments, byte[] content, )
|
||
|
|
//{
|
||
|
|
// if (input < min)
|
||
|
|
// {
|
||
|
|
// return min;
|
||
|
|
// }
|
||
|
|
// if (input > max)
|
||
|
|
// {
|
||
|
|
// return max;
|
||
|
|
// }
|
||
|
|
// return input;
|
||
|
|
//}
|
||
|
|
}
|
||
|
|
}
|