Change-Id: Id4b8cdfcaa2b8a9e9467cfbd764f0abe8951d028
Signed-off-by: intae, jeon <intae.jeon@samsung.com>
/// The absolute full path of the file to be attached
/// </summary>
public string FilePath { get; set; }
+ /// <summary>
+ /// The constructor
+ /// </summary>
+ public EmailAttachment()
+ {
+
+ }
}
}
/// <summary>
/// List of file attachments
/// </summary>
- /// <remarks>
- /// The maximum attachment file size is 10 MB.
- /// </remarks>
public IList<EmailAttachment> Attachments
{
get
}
}
- /// <summary>
- /// Saves the email message
- /// </summary>
- public void Save()
+
+ internal void Save()
{
int ret;
FillHandle();
/// The email address of the recipient
/// </summary>
public string Address { get; set; }
+ /// <summary>
+ /// The constructor
+ /// </summary>
+ public EmailRecipient()
+ {
+
+ }
}
}
/// <param name="email">The email message</param>
/// <param name="saveToSentBox">true to save the message in the sentbox</param>
/// <returns> Failure if email sending failed otherwise Success</returns>
- public static async Task<EmailSendResult> SendAsync(EmailMessage email, bool saveToSentBox)
+ public static async Task<EmailSendResult> SendAsync(EmailMessage email)
{
var task = new TaskCompletionSource<EmailSendResult>();
int ret = (int)EmailError.None;
+ bool saveToSentBox = false;
email.FillHandle();
email.Save();