EventQueue not triggering from Inbound action

SNowUser11
Kilo Guru

HI,

I set up the eventqueue in Inbound actions, created event and set up notification but the event is not triggered. The inbound action is executed as i checked with logs.

find_real_file.png

find_real_file.png

find_real_file.png

find_real_file.png

1 ACCEPTED SOLUTION

SNowUser11
Kilo Guru

Hello Community,

Just to let if anyone wants what I did at last if that helps anyone I wrote a Business Rule and it nicely triggered. 

Thanks

View solution in original post

38 REPLIES 38

Could you please help us what you want to achieve so that we can assist you.

In case you just want to reply to the email without any record action then without triggering event you can respond to the email by selecting Action type as Reply Email and setting the reply in Action as below snipped.

find_real_file.png

 

find_real_file.png

 

Regards,

Alok

This way it was working but then we realized that the users are External not in sys_user table and hence have to change that

Allen Andreas
Administrator
Administrator

Hi,

Can you show us what the email log says for this email?

Do you have any conditions that could cause problems?

Is "current" an actual result...like did your inbound action find a "current" related record.

Please mark reply as Helpful/Correct, if applicable. Thanks!

 


Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!

Yes the inbound action is getting executed for only specific condition (in my case when a specific email address sends an email) The Inbound Action is executed i have put logs to see if that is triggered so it is. but then no email notification i receive. I tried updating the Event->registry with table name (inbound actions) but still no luck. 

current is giving me -objt gliderecord  (I updated instead of current TO email) but still not working

Mihir Mohanta
Kilo Sage

Please include the 4th parameter of the gs.eventQueue() function.

like

gs.eventQueue("response.internal", current, email.from, null);

 

You can also try email.origemail instead of email.from

 

Thanks,

Mihir