Skip to content

Instantly share code, notes, and snippets.

@pichayean
Created April 27, 2021 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pichayean/6f7fdee46ea81b3a924f93553252ab1b to your computer and use it in GitHub Desktop.
Save pichayean/6f7fdee46ea81b3a924f93553252ab1b to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
namespace email_sender_demo.Controllers
{
[ApiController]
[Route("[controller]")]
public class EmailSenderController : ControllerBase
{
private readonly ILogger<EmailSenderController> _logger;
private readonly IEmailSenderService _emailSenderService;
public EmailSenderController(ILogger<EmailSenderController> logger, IEmailSenderService emailSenderService)
{
_logger = logger;
_emailSenderService = emailSenderService;
}
[HttpGet]
[Route("sendsampleemail")]
public IActionResult Get(string fromEmail, string toEmail)
{
string titlewords = LoremNET.Lorem.Words(5, 10, false, true);
string sentence = LoremNET.Lorem.Sentence(30, 100);
_emailSenderService.Send(fromEmail, toEmail, titlewords, $@"<p> {sentence} </p>");
return Ok(new
{
Status = "sended"
});
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment