Community forum

Please note that VisualCron support is not actively monitoring this community forum. Please use our contact page for contacting the VisualCron support directly.


DJacobsen
2016-04-26T20:17:55Z
I'm trying to figure out how Notifications work and I am trying to test with an SFTP task that is going to fail.

I have used a malformed URL for the SFTP task. I included the protocol in the URl, SFTP://sftp.domain.com . This causes the task to error out with an error of "No such host is known". as the Output (error).

I have setup an email notification. The body of the email notification is using {TASK(Active,ExitCodeDesc)} in the body and I set it to be sent On Error from the Flow tab of the Task.

When I run the task, I get the email as I expect but the body of the email says 'The operation completed successfully. '.

How do I use a variable inside a Notification so that it can be used in an On Error event to return the Error Description of the Task that caused the error?
Sponsor
Forum information
al355
2016-04-26T21:25:06Z
Here is what we put in emails

Job Failed....

Job Name: {JOB(Active|Name)}
Result: {JOB(Active|Result)}
Exit Code: {JOB(Active|ExitCode)}

Task Name: {TASK(PrevTask,Name)}
Task Exit Code: {TASK(PrevTask,ExitCode)}
{TASK(PrevTask,ExitCodeDesc)}


Output:
[{TASK(PrevTask,StdOut)}]

Standard Error:
[{TASK(PrevTask,StdErr)}]
DJacobsen
2016-04-27T19:24:11Z
Thank you, that helped figure out what we wanted to do.
Scroll to Top