readme content
parent
b12a878899
commit
a3f93534d6
11
README.md
11
README.md
|
@ -1 +1,12 @@
|
||||||
# Correo
|
# Correo
|
||||||
|
|
||||||
|
Correo is a .NET service with the role of programmatically sending emails.
|
||||||
|
It can integrate with:
|
||||||
|
|
||||||
|
**SMTP servers:**
|
||||||
|
* local servers
|
||||||
|
* Gmail
|
||||||
|
* Yahoo
|
||||||
|
|
||||||
|
**Transactional Email APIs:**
|
||||||
|
* SendGrid
|
|
@ -1,4 +1,6 @@
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace Correo.Controllers
|
namespace Correo.Controllers
|
||||||
{
|
{
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
using Microsoft.AspNetCore.Builder;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Microsoft.Extensions.Hosting;
|
||||||
|
|
||||||
namespace Correo
|
namespace Correo
|
||||||
{
|
{
|
||||||
public class Program
|
public class Program
|
||||||
|
|
Loading…
Reference in New Issue