Esempio n. 1
0
        public static async Task <bool> TryGetFileAttachmentsAsync()
        {
            var newMessageId = await EmailSnippets.CreateDraftAsync(
                STORY_DATA_IDENTIFIER,
                DEFAULT_MESSAGE_BODY,
                AuthenticationHelper.LoggedInUserEmail
                );

            if (newMessageId == null)
            {
                return(false);
            }

            await EmailSnippets.AddFileAttachmentAsync(newMessageId, new MemoryStream(Encoding.UTF8.GetBytes("TryAddMailAttachmentAsync")));

            // Find the sent message.
            var sentMessageId = await GetSentMessageIdAsync();

            if (String.IsNullOrEmpty(sentMessageId))
            {
                return(false);
            }

            await EmailSnippets.GetFileAttachmentsAsync(sentMessageId);

            return(true);
        }
Esempio n. 2
0
        public static async Task <bool> TryAddFileAttachmentAsync()
        {
            var newMessageId = await EmailSnippets.CreateDraftAsync(
                STORY_DATA_IDENTIFIER,
                DEFAULT_MESSAGE_BODY,
                AuthenticationHelper.LoggedInUserEmail
                );

            if (newMessageId == null)
            {
                return(false);
            }

            // Pass a MemoryStream object for the sake of simplicity.

            using (MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes("TryAddMailAttachmentAsync")))
            {
                await EmailSnippets.AddFileAttachmentAsync(newMessageId, ms);
            }

            return(true);
        }