This commit is contained in:
2020-07-21 23:43:55 +00:00
parent 3c650ba980
commit 662af797e1
5 changed files with 155 additions and 2 deletions

View File

@@ -166,6 +166,14 @@ namespace AyaNova.Biz
//If it's not possible to notify the person via in app of the failed smtp then perhaps it notifies OPS personnel and biz admin personnel
}
//Called from ops notification settings to test smtp setup by delivering to address of choosing
public static async Task<string> TestSMTPDelivery(string toAddress)
{
//DO TEST DELIVERY HERE USING EXACT SAME SETTINGS AS FOR DeliverSMTP above
return "ok";
}
/////////////////////////////////////////////////////////////////////