collenr123
IS-IT--Management
Hello,
Below I have code to trigger an email when FollowUpdate is true, this MUST terminate if STATUS is either ACCEPTED or REJECTED!
It's not doing so, can anyone please tell me why?
My STATUS field is a radio button with 3 opetions:
OPEN-NEW, ACCEPTED, REJECTED
Thanks
SELECT @Date(@TextToTime(@Text(FollowUpDate))) = @Today & (STATUS != "ACCEPTED" | STATUS != "REJECTED"
manager := Collen;
text := "ESTIMATE NUMBER: " + @Text(NUMBER) + @NewLine
+ "ESTIMATE STATUS: " +@Text(STATUS) + @NewLine
+ "---------------------------------------------"
+ @NewLine
+ "ESTIMATE FOR: " +@Text(Customer_Name) + @NewLine
+ "ESTIMATE DATE: " +@Text(Date_Created) + @NewLine
+ "FOLLOW UP DATE WAS SET: " +@Text(FollowUpDate) + @NewLine
+ "----------------------------------------------"
+@NewLine
+ "You\'re receiving this notification as this Estimate was set to remind you to follow up and to confirm the Estimate status! "
+ "-----------------------------------------------"
+ @NewLine
+"Click DocLink below to access this estimate ¬"+ @NewLine;
@If(From="";"";@MailSend( From; manager; ""; "Follow up required on Air Export Estimate #" + @Text(NUMBER); text; "";[IncludeDoclink]) )
Below I have code to trigger an email when FollowUpdate is true, this MUST terminate if STATUS is either ACCEPTED or REJECTED!
It's not doing so, can anyone please tell me why?
My STATUS field is a radio button with 3 opetions:
OPEN-NEW, ACCEPTED, REJECTED
Thanks
SELECT @Date(@TextToTime(@Text(FollowUpDate))) = @Today & (STATUS != "ACCEPTED" | STATUS != "REJECTED"
manager := Collen;
text := "ESTIMATE NUMBER: " + @Text(NUMBER) + @NewLine
+ "ESTIMATE STATUS: " +@Text(STATUS) + @NewLine
+ "---------------------------------------------"
+ @NewLine
+ "ESTIMATE FOR: " +@Text(Customer_Name) + @NewLine
+ "ESTIMATE DATE: " +@Text(Date_Created) + @NewLine
+ "FOLLOW UP DATE WAS SET: " +@Text(FollowUpDate) + @NewLine
+ "----------------------------------------------"
+@NewLine
+ "You\'re receiving this notification as this Estimate was set to remind you to follow up and to confirm the Estimate status! "
+ "-----------------------------------------------"
+ @NewLine
+"Click DocLink below to access this estimate ¬"+ @NewLine;
@If(From="";"";@MailSend( From; manager; ""; "Follow up required on Air Export Estimate #" + @Text(NUMBER); text; "";[IncludeDoclink]) )