Email is now Built-in! (#2635)
This commit is contained in:
parent
2a539da24c
commit
a85644fb6b
55 changed files with 5129 additions and 1047 deletions
15
Kavita.Email/DTOs/EmailOptionsDto.cs
Normal file
15
Kavita.Email/DTOs/EmailOptionsDto.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Skeleton.DTOs;
|
||||
|
||||
public class EmailOptionsDto
|
||||
{
|
||||
public IList<string> ToEmails { get; set; }
|
||||
public string Subject { get; set; }
|
||||
public string Body { get; set; }
|
||||
public IList<KeyValuePair<string, string>> PlaceHolders { get; set; }
|
||||
/// <summary>
|
||||
/// Filenames to attach
|
||||
/// </summary>
|
||||
public IList<string> Attachments { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue