Reorganized the AuthType enum.

This commit is contained in:
Relintai 2023-09-18 13:48:23 +02:00
parent d20b8d11f7
commit 91a5c49dd2

View File

@ -8,9 +8,9 @@ enum SMTPStatus {
} }
enum AuthType { enum AuthType {
PLAINTEXT, SMTPS,
STARTTLS, STARTTLS,
SMTPS PLAINTEXT,
} }
export(String) var server : String = "smtp.gmail.com" export(String) var server : String = "smtp.gmail.com"