readme content

master
Tudor Stanciu 2023-01-17 23:49:05 +02:00
parent b12a878899
commit a3f93534d6
4 changed files with 18 additions and 3 deletions

View File

@ -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

View File

@ -1,4 +1,6 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using System;
namespace Correo.Controllers
{

View File

@ -2,8 +2,6 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>

View File

@ -1,3 +1,7 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace Correo
{
public class Program