email accounts not present in my PDI
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-18-2023 05:56 AM
There are no email accounts configured in my PDI.
Please help restore/create it. I am unable to send/receive emails due to it. when I created it manually its show an error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-18-2023 05:59 AM
Hi @Abhishek Padole ,
ServiceNow has disable that feature.
If you’re an existing Personal Developer Instance (PDI) user, you probably noticed we recently shipped a new change to disable sending and receiving emails on PDIs. Read on to learn more about what this means for you.
Why are we making this change?
PDIs are being used to send high levels of email spam. While we actively monitor all PDIs for suspicious activity and shut down PDIs that violate our policies, we’ve found that accidental spam activity is a growing problem. As a result, the best way to prevent email spam is to disable the feature from PDIs indefinitely.
Refer :-CHANGES TO SENDING EMAILS FROM PDIS
Please Mark My Response as Correct/Helpful based on Impact
Regards,
Gunjan Kiratkar
2X ServiceNow MVP
Community Rising Star 2022
Youtube : ServiceNow Guy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-18-2023 06:08 AM
Hello @Abhishek Padole
For future reference, for issues such as these in an instance other than your PDI. You can use a very quick fix script to resolve your issue as well. Here is an example of one that will work
(function () {
var rec = newGlideRecord('sys_user');
rec.addQuery('active', true);
rec.query();
while (rec.next()) {
var newEmail = rec.getValue('user_name') + "@example.com";
rec.setValue('email', newEmail);
rec.update();
}
})();
Please mark my answer helpful or correct if applicable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-15-2023 08:20 AM
We can add our personal gmail account into it. See the below link
Thanks
Vipin Mathew