Creating a Job
Creating a Job Instance
component {
function index( event, rc, prc ) {
var job = getInstance( "SendWelcomeEmailJob" );
}
}Setting Job Properties
component {
function index( event, rc, prc ) {
var job = getInstance( "SendWelcomeEmailJob" );
job.setEmail( "[email protected]" );
job.setGreeting( "Welcome!" );
}
}