The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
626 B
27 lines
626 B
using System; |
|
|
|
namespace Teknik.MailService |
|
{ |
|
public interface IMailService |
|
{ |
|
bool AccountExists(string username); |
|
|
|
DateTime LastActive(string username); |
|
|
|
bool Enabled(string username); |
|
|
|
void CreateAccount(string username, string password, long size); |
|
|
|
void EditPassword(string username, string password); |
|
|
|
void EditMaxSize(string username, long size); |
|
|
|
void EditMaxEmailsPerDay(string username, int maxPerDay); |
|
|
|
void EnableAccount(string username); |
|
|
|
void DisableAccount(string username); |
|
|
|
void DeleteAccount(string username); |
|
} |
|
}
|
|
|