Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. {
  2. "MailTo": "abcdefg@hijklmn.opqrst",
  3. "Subject": "This is the subject",
  4. "Body": "This is the body"
  5. }
  6.  
  7. [HttpPost]
  8. public IHttpActionResult SendMail([FromBody] MailData mailData)
  9. {
  10. if(ValidateMailData(mailData) == true)
  11. {
  12. Email.send(mailData);
  13. return Ok("Your email was sent!");
  14. }
  15.  
  16. return BadRequest("Some error");
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement