mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-30 19:54:14 -04:00
* Added ServerSettingKey's for SMTP and moved email service code to Kavita. Nothing integrated in the UI yet. * Undo all the custom SMTP stuff and prepare for custom email service url. * Foundation for email service to use a custom url is setup. * Implemented the ability to hook up custom email url
7 lines
96 B
C#
7 lines
96 B
C#
namespace API.DTOs.Email;
|
|
|
|
public class TestEmailDto
|
|
{
|
|
public string Url { get; set; }
|
|
}
|