- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-06-2017 07:37 PM
Hi Guys,
Can someone please confirm if there is a way that I can send emails from multiple addresses when notifications are going out from ServiceNow?
I have got a requirement where several different Request Management system (such as Finance, HR) want to use different email addresses as having one email doesn't meet their requirements.
Regards,
Mussie
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2017 03:49 PM
Hi Mussie,
You can do like this:
if(current.requester.department=='Finance')
{
email.setFrom("Finance Service Desk <example@finance.com>");
}
else if(current.requester.department=='exm')
{
//your other conditions
}
Regards,
Rahul Jain
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2017 04:53 PM
That did the trick, thank you.
Mussie