Question
I import documents via POP3/IMAP. I need to use an email sender value in building a filename for export files.
Answer
- Create a batch processing script stage after the Scanning stage in the Advanced workflow.
- Add this code into the script:
string emailSender = Batch.Properties.Get("fc_Predefined:EmailSender");
Batch.Properties.Set("EmailSender", emailSender);
- Add a tag into the filename template:
Comments
1 comment
Benazir
Hey can someone explain how to get email body
Please sign in to leave a comment.