Hi all,
Is there a way of fetching email address when there is Out of office reply from a specific user. Appreciate your help.
Thanks and regards,
Amita
Discussion posts and replies are publicly visible
If the send email node "Sender" is "Process Model" then you can configure that same process model's Start Node to receive and inbound email. That way when the OOO replies a new instance of your process will begin, you will then have to design some process logic to capture the inbound mail details and correlate it to your original outbound one. The following doc should help with the basic understanding, as shown if your outbound email contains an identifier in the subject e.g. [caseID=nnnnn] you will be able to pick this value up on the OOO response.
docs.appian.com/.../Sending_an_Email_Message_to_a_Process.html
Are you able to trigger the process, once OOO reply email is being received. If answer is Yes then :
1. Configure the Start node Trigger to receive message and configure it for Listen to message Type EMAIL.
2. inside Data Tab of Message Event you can configure as below:
Create Multiple Mapping for PV to email parameters:
msg!body --> will return your body content of email
'msg!properties'.'subject' --> this will give you subject.
similarly to can get data for other fields as well.