Inbound & Outbound Emails -MS exchange with IMAP / SMTP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-21-2022 02:21 AM
Hi,
Can we Configure the Same Email account address for Inbound and Outbound Email in Servicenow ? I have integrated MS Exchange with Service now Via SMTP and IMAP. Customer has provided me to configure the same account for both IMAP and SMTP .Can we configure like this ?
I get
SMTPSender: no recipients, email send ignored for outbound
and for Inbound i am not Receiving any emails.
I have seen a related content below.Can anyone once again confirm if you have worked on this ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-22-2022 03:14 AM
Yes, You may do that. You need to configure the notifications. This will direct the email to your desired email addresses.
email script:
(function runMailScript(current, template, event) {
email.setFrom(current.recruiter_email.toString());
email.setReplyTo(current.recruiter_email.toString());
})(current, template, email, email_action, event);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2022 12:11 AM
@GodOfWar can you send me screen shot where exactly i need to configure this script ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2022 12:23 AM
Go to "Notification email scripts". Create one with your custom script then, call it in every notification you needed for outbound.
Don't hesitate to click the Thumbs up button below if this helps.