Implement Plunk email sending service with HttpClient integration and DTO definition.
This commit is contained in:
9
API/Models/Outgoing/PlunkEmailDto.cs
Normal file
9
API/Models/Outgoing/PlunkEmailDto.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace API.Models.Outgoing;
|
||||
|
||||
public class PlunkEmailDto
|
||||
{
|
||||
public required string To { get; set; }
|
||||
public required string Subject { get; set; }
|
||||
public required string Body { get; set; }
|
||||
public string? Name { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user