Elarax.AwsMailService 1.0.2

dotnet add package Elarax.AwsMailService --version 1.0.2
NuGet\Install-Package Elarax.AwsMailService -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Elarax.AwsMailService" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Elarax.AwsMailService --version 1.0.2
#r "nuget: Elarax.AwsMailService, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Elarax.AwsMailService as a Cake Addin
#addin nuget:?package=Elarax.AwsMailService&version=1.0.2

// Install Elarax.AwsMailService as a Cake Tool
#tool nuget:?package=Elarax.AwsMailService&version=1.0.2

Service written in .NETCore for sending emails from AWS Email Credentials.

Install Package

dotnet add package Elarax.AwsMailService

Configure Startup

Obtain SMTP Credentials from AWS

https://docs.aws.amazon.com/ses/latest/dg/smtp-credentials.html

Update appSettings.json

"AwsKeys": {
	"ApiKey": "AWS_API_KEY",
	"ApiSecret": "AWS_API_SECRET_KEY",
	"Server": "EMAIL SERVER"
},

Add to pipeline

builder.Services.AddEmailService(options =>
{
	options.ApiKey = builder.Configuration["AwsKeys:ApiKey"];
	options.ApiSecret = builder.Configuration["AwsKeys:ApiKey"];
	//options.From = Configuration["AwsKeys:From"]; // optional
	options.Server = builder.Configuration["AwsKeys:Server"];
});

Send Email

using Elarax.AwsMailService;

private readonly IEmailService emailService;

public ConfigurationsController(IEmailService emailService)
{
	this.emailService = emailService;
}

public async Task<JsonResult> SendTestEmail(string sendermail)
{
	var toEmail = "mail@server.com";

	var mail = new System.Net.Mail.MailMessage();
	mail.To.Add(toEmail);

	mail.Subject = "Test Email";
	mail.Body = "<html><body style='font-family:Arial'<p>Hello from Elarax.AwsMailService</p>" +
							"<p>This is a test mail</p>" +
							"<br />"+
							"<p>*please ignore this mail</p></body></html>";

	bool isEmailSuccess = await emailService.SendEmailAsync(mail);
	return Json(new { Result = isEmailSuccess ? "success" : "failure" });
}

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 164 6/28/2023
1.0.1 143 6/18/2023
1.0.0 124 6/18/2023