readme content
parent
b12a878899
commit
a3f93534d6
13
README.md
13
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.Extensions.Logging;
|
||||
using System;
|
||||
|
||||
namespace Correo.Controllers
|
||||
{
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
|
||||
namespace Correo
|
||||
{
|
||||
public class Program
|
||||
|
|
Loading…
Reference in New Issue