Emails Sent from Guest User
BlogSalesforce PlatformEmails Sent from Guest User

Emails Sent from Guest User

Did your emails going out from guest user stopped working?

With the rollout of Summer’ 23 release, emails going out from Guest User will stop working if the Guest User Email record does not have a verified organization wide email address added to it.


Salesforce Summer’23 Release


If your emails are impacted as well after Summer’ 23 release, follow these steps to start them again:

  1. Salesforce sets a dummy email address while a new guest user is created, set a valid email Address on the Guest User record.
  2. Add the same email address in your Organization-Wide Email Addresses and verify that address.
  3. If you are using Apex Code to send the email, query the Org Wide Email address and assign it to the SingleEmailMessage object.
apex
List<OrgWideEmailAddress> oeList = [select Id from OrgWideEmailAddress where Address = 'mysite@gvmantra.com'];

Messaging.SingleEmailMessage email = new Messaging.SingleEmailMessage();

if(oeList.size()>0){
    email.setOrgWideEmailAddressId(owea[0].Id);
}
Share this post:
Tags:#Apex

Related Posts

Demystifying Salesforce Pricing – Revenue Cloud
4 min read

Demystifying Salesforce Pricing – Revenue Cloud

Understanding the Core Building Blocks of Salesforce Pricing Before diving into configuration or process design in Salesforce Revenue Cloud, it’s important to understand the key conceptual components that drive pricing and qualification logic

G
GV Mantra16 Jun 2025
Read More →
Revenue Cloud – Product Catalog Building Blocks
1 min read

Revenue Cloud – Product Catalog Building Blocks

Product Navigation Before you start learning or using Salesforce Revenue Cloud, it’s important to understand some basic building blocks of Product Catalog Management.

G
GV Mantra9 Jun 2025
Read More →
Revenue Cloud – Setting Up Multi-Currency
2 min read

Revenue Cloud – Setting Up Multi-Currency

Once multi-currency is enabled in your org, you need to configure Revenue Cloud to ensure correct pricing on quotes and product additions. Follow these steps

G
GV Mantra9 Jun 2025
Read More →

Recent Posts

Categories

Tags

Stay Updated

Get the latest Salesforce insights delivered to your inbox.