forked from jcamp-code/FluentEmail
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
254 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ Original blog post here for a detailed guide [A complete guide to send email in | |
- [FluentEmail.SendGrid](src/Senders/FluentEmail.SendGrid) - Send email via the SendGrid API. | ||
- [FluentEmail.Mailtrap](src/Senders/FluentEmail.Mailtrap) - Send emails to Mailtrap. Uses [FluentEmail.Smtp](src/Senders/FluentEmail.Smtp) for delivery. | ||
- [FluentEmail.MailKit](src/Senders/FluentEmail.MailKit) - Send emails using the [MailKit](https://github.com/jstedfast/MailKit) email library. | ||
- [FluentEmail.MailPace](src/Senders/FluentEmail.MailPace) - Send emails via the [MailPace](https://www.mailpace.com/) REST API. | ||
- [FluentEmail.MailerSend](https://github.com/marcoatribeiro/FluentEmail.MailerSend) - Send email via [MailerSend](https://www.mailersend.com/)'s API. | ||
|
||
## Basic Usage | ||
|
@@ -166,4 +167,4 @@ var email = new Email("[email protected]") | |
.UsingTemplateFromEmbedded("Example.Project.Namespace.template-name.cshtml", | ||
new { Name = "Bob" }, | ||
TypeFromYourEmbeddedAssembly.GetType().GetTypeInfo().Assembly); | ||
``` | ||
``` |
20 changes: 20 additions & 0 deletions
20
src/Senders/FluentEmail.MailPace/FluentEmail.MailPace.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>Send emails via MailPace using their REST API</Description> | ||
<AssemblyTitle>Fluent Email - MailPace</AssemblyTitle> | ||
<PackageTags>$(PackageTags);mailpace</PackageTags> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<PackageId>jcamp.$(AssemblyName)</PackageId> | ||
<Product>jcamp.$(AssemblyName)</Product> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\FluentEmail.Core\FluentEmail.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
18 changes: 18 additions & 0 deletions
18
src/Senders/FluentEmail.MailPace/FluentEmailMailPaceBuilderExtensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using FluentEmail.Core.Interfaces; | ||
using FluentEmail.MailPace; | ||
using Microsoft.Extensions.DependencyInjection.Extensions; | ||
|
||
// ReSharper disable once CheckNamespace | ||
namespace Microsoft.Extensions.DependencyInjection | ||
{ | ||
public static class FluentEmailMailPaceBuilderExtensions | ||
{ | ||
public static FluentEmailServicesBuilder AddMailPaceSender( | ||
this FluentEmailServicesBuilder builder, | ||
string serverToken) | ||
{ | ||
builder.Services.TryAdd(ServiceDescriptor.Scoped<ISender>(_ => new MailPaceSender(serverToken))); | ||
return builder; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace FluentEmail.MailPace; | ||
|
||
public class MailPaceAttachment | ||
{ | ||
[JsonProperty("name")] public string Name { get; set; } | ||
[JsonProperty("content")] public string Content { get; set; } | ||
[JsonProperty("content_type")] public string ContentType { get; set; } | ||
[JsonProperty("cid", NullValueHandling = NullValueHandling.Ignore)] public string Cid { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
|
||
namespace FluentEmail.MailPace; | ||
|
||
public class MailPaceResponse | ||
{ | ||
[JsonProperty("id", NullValueHandling = NullValueHandling.Ignore)] public string Id { get; set; } | ||
[JsonProperty("status", NullValueHandling = NullValueHandling.Ignore)] public string Status { get; set; } | ||
[JsonProperty("error")] public string Error { get; set; } | ||
[JsonProperty("errors")] public Dictionary<string, List<string>> Errors { get; set; } = new(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
|
||
namespace FluentEmail.MailPace; | ||
|
||
public class MailPaceSendRequest | ||
{ | ||
[JsonProperty("from")] public string From { get; set; } | ||
[JsonProperty("to")] public string To { get; set; } | ||
[JsonProperty("cc", NullValueHandling = NullValueHandling.Ignore)] public string Cc { get; set; } | ||
[JsonProperty("bcc", NullValueHandling = NullValueHandling.Ignore)] public string Bcc { get; set; } | ||
[JsonProperty("subject")] public string Subject { get; set; } | ||
[JsonProperty("htmlbody", NullValueHandling = NullValueHandling.Ignore)] public string HtmlBody { get; set; } | ||
[JsonProperty("textbody", NullValueHandling = NullValueHandling.Ignore)] public string TextBody { get; set; } | ||
[JsonProperty("replyto", NullValueHandling = NullValueHandling.Ignore)] public string ReplyTo { get; set; } | ||
[JsonProperty("attachments")] public List<MailPaceAttachment> Attachments { get; set; } = new(0); | ||
[JsonProperty("tags")] public List<string> Tags { get; set; } = new(0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
using System; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Net.Http; | ||
using System.Net.Http.Headers; | ||
using System.Text; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using FluentEmail.Core; | ||
using FluentEmail.Core.Interfaces; | ||
using FluentEmail.Core.Models; | ||
using Newtonsoft.Json; | ||
|
||
namespace FluentEmail.MailPace; | ||
|
||
public class MailPaceSender : ISender, IDisposable | ||
{ | ||
private readonly HttpClient _httpClient; | ||
|
||
public MailPaceSender(string serverToken) | ||
{ | ||
_httpClient = new HttpClient(); | ||
_httpClient.DefaultRequestHeaders.Add("MailPace-Server-Token", serverToken); | ||
_httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); | ||
} | ||
|
||
public SendResponse Send(IFluentEmail email, CancellationToken? token = null) => | ||
SendAsync(email, token).GetAwaiter().GetResult(); | ||
|
||
public async Task<SendResponse> SendAsync(IFluentEmail email, CancellationToken? token = null) | ||
{ | ||
var sendRequest = BuildSendRequestFor(email); | ||
|
||
var content = new StringContent(JsonConvert.SerializeObject(sendRequest), Encoding.UTF8, "application/json"); | ||
|
||
var response = await _httpClient.PostAsync("https://app.mailpace.com/api/v1/send", content) | ||
.ConfigureAwait(false); | ||
|
||
var mailPaceResponse = await TryOrNull(async () => JsonConvert.DeserializeObject<MailPaceResponse>( | ||
await response.Content.ReadAsStringAsync())) ?? new MailPaceResponse(); | ||
|
||
if (response.IsSuccessStatusCode) | ||
{ | ||
return new SendResponse { MessageId = mailPaceResponse.Id }; | ||
} | ||
else | ||
{ | ||
var result = new SendResponse(); | ||
|
||
if (!string.IsNullOrEmpty(mailPaceResponse.Error)) | ||
{ | ||
result.ErrorMessages.Add(mailPaceResponse.Error); | ||
} | ||
|
||
if (mailPaceResponse.Errors != null && mailPaceResponse.Errors.Count != 0) | ||
{ | ||
result.ErrorMessages.AddRange(mailPaceResponse.Errors | ||
.Select(it => $"{it.Key}: {string.Join("; ", it.Value)}")); | ||
} | ||
|
||
if (!result.ErrorMessages.Any()) | ||
{ | ||
result.ErrorMessages.Add(response.ReasonPhrase ?? "An unknown error has occurred."); | ||
} | ||
|
||
return result; | ||
} | ||
} | ||
|
||
private static MailPaceSendRequest BuildSendRequestFor(IFluentEmail email) | ||
{ | ||
var sendRequest = new MailPaceSendRequest | ||
{ | ||
From = $"{email.Data.FromAddress.Name} <{email.Data.FromAddress.EmailAddress}>", | ||
To = string.Join(",", email.Data.ToAddresses.Select(it => !string.IsNullOrEmpty(it.Name) ? $"{it.Name} <{it.EmailAddress}>" : it.EmailAddress)), | ||
Subject = email.Data.Subject | ||
}; | ||
|
||
if (email.Data.CcAddresses.Any()) | ||
{ | ||
sendRequest.Cc = string.Join(",", email.Data.CcAddresses.Select(it => !string.IsNullOrEmpty(it.Name) ? $"{it.Name} <{it.EmailAddress}>" : it.EmailAddress)); | ||
} | ||
|
||
if (email.Data.BccAddresses.Any()) | ||
{ | ||
sendRequest.Bcc = string.Join(",", email.Data.BccAddresses.Select(it => !string.IsNullOrEmpty(it.Name) ? $"{it.Name} <{it.EmailAddress}>" : it.EmailAddress)); | ||
} | ||
|
||
if (email.Data.ReplyToAddresses.Any()) | ||
{ | ||
sendRequest.ReplyTo = string.Join(",", email.Data.ReplyToAddresses.Select(it => !string.IsNullOrEmpty(it.Name) ? $"{it.Name} <{it.EmailAddress}>" : it.EmailAddress)); | ||
} | ||
|
||
if (email.Data.IsHtml) | ||
{ | ||
sendRequest.HtmlBody = email.Data.Body; | ||
if (!string.IsNullOrEmpty(email.Data.PlaintextAlternativeBody)) | ||
{ | ||
sendRequest.TextBody = email.Data.PlaintextAlternativeBody; | ||
} | ||
} | ||
else | ||
{ | ||
sendRequest.TextBody = email.Data.Body; | ||
} | ||
|
||
if (email.Data.Tags.Any()) | ||
{ | ||
sendRequest.Tags.AddRange(email.Data.Tags); | ||
} | ||
|
||
if (email.Data.Attachments.Any()) | ||
{ | ||
sendRequest.Attachments.AddRange( | ||
email.Data.Attachments.Select(it => new MailPaceAttachment | ||
{ | ||
Name = it.Filename, | ||
Content = it.Data.ConvertToBase64(), | ||
ContentType = it.ContentType ?? Path.GetExtension(it.Filename), // jpeg, jpg, png, gif, txt, pdf, docx, xlsx, pptx, csv, att, ics, ical, html, zip | ||
Cid = it.IsInline ? it.ContentId : null | ||
})); | ||
} | ||
|
||
return sendRequest; | ||
} | ||
|
||
private async Task<T> TryOrNull<T>(Func<Task<T>> method) | ||
{ | ||
try | ||
{ | ||
return await method(); | ||
} | ||
catch | ||
{ | ||
return default; | ||
} | ||
} | ||
|
||
public void Dispose() | ||
{ | ||
_httpClient.Dispose(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System; | ||
using System.IO; | ||
|
||
namespace FluentEmail.MailPace; | ||
|
||
public static class StreamExtensions | ||
{ | ||
public static string ConvertToBase64(this Stream stream) | ||
{ | ||
if (stream is MemoryStream memoryStream) | ||
{ | ||
return Convert.ToBase64String(memoryStream.ToArray()); | ||
} | ||
|
||
var bytes = new Byte[(int)stream.Length]; | ||
|
||
stream.Seek(0, SeekOrigin.Begin); | ||
// ReSharper disable once MustUseReturnValue | ||
stream.Read(bytes, 0, (int)stream.Length); | ||
|
||
return Convert.ToBase64String(bytes); | ||
} | ||
} |