Email Namespace change update from CVRLIB

This commit is contained in:
Cameron Taylor 2023-05-18 15:14:43 -04:00
parent 9c06f80dd7
commit ebf3d3069b

View File

@ -35,9 +35,9 @@ namespace VSERVERWS.Controllers {
[HttpGet]
public IActionResult PaymentStatus() {
//api/Payment/PaymentStatus
CVRPRINTER_MF264dw? CVP2 = CVP_MF264dw;
CVRPRINTER_MFC_L8900CDW? CVP3 = CVP_MFC_L8900CDW;
@ -115,7 +115,7 @@ namespace VSERVERWS.Controllers {
if (DateTime.Now.Subtract(LastError).Hours > 2) {
Email E = new Email();
E.SEND_FROM = Email.SEND_FROM_ENUM.OFFICE365;
E.SEND_FROM = SEND_FROM_ENUM.OFFICE365;
string B = "Payment System Printer error / offline: Check applicable printer(s) for error or offline!";
string S = "<cc> Payment System Printer Error: Check Printer(s)!";
@ -148,7 +148,7 @@ namespace VSERVERWS.Controllers {
object? rOBJ = null;
Email E = new Email();
E.SEND_FROM = Email.SEND_FROM_ENUM.OFFICE365;
E.SEND_FROM = SEND_FROM_ENUM.OFFICE365;
bool DupRetry = false;