Advertisement
Guest User

Untitled

a guest
Mar 1st, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <flow...>
  2. ....
  3. <objectstore:retrieve config-ref="ObjectStore__Configuration" key="emailSentFlag" defaultValue-ref="false" targetProperty="flowVars.emailSentFlag" doc:name="retrieve emailSentFlag"/>
  4. <choice doc:name="IsEmailSent?">
  5. <when expression="#[flowVars.emailSentFlag == true]">
  6. <logger level="INFO" doc:name="Log Email Already Sent"/>
  7. </when>
  8. <otherwise>
  9. <smtp:outbound-endpoint host="" user="" password="" to="" from="" subject="test" cc="" bcc="" replyTo="" responseTimeout="10000" ref="Gmail" doc:name="SMTP" connector-ref="Gmail"/>
  10. <objectstore:store config-ref="ObjectStore__Configuration" key="emailSentFlag" value-ref="#[true]" doc:name="store emailSentFlag"/>
  11. </otherwise>
  12. </choice>
  13. </flow>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement