Inbound Email Action not working
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2016 07:37 AM
In a new application I have created I have enabled email sending and am showing sent/received email in activities however whilst I can see outbound email I cannot see inbound so I checked 'System Mailboxes - Received' and saw it wasn't being processed. My inbound action on the correct table is as below:-
gs.include('validators');
if (current.getTableName() == "u_wmi_change_europe") {
current.comments = "reply from: " + email.origemail + "\n\n" + email.body_text;
if (email.body.priority != undefined && isNumeric(email.body.priority))
current.priority = email.body.priority;
}
current.update();
}
Above is the inbound action
TIA
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2016 06:19 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2016 06:34 AM
Eureka? yeah, that matters. What I suggested isn't in Eureka. Is there anything in the Email log, or system log about why it's not getting the table?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2016 06:50 AM