Feed
- Recent Activity
- Created Date
- Questions with an Accepted Answer
- Questions with No Accepted Answer
- Unanswered Questions
- Appexchage Apps
- Audience Studio
- Automation Studio
- B2B Commerce
- B2C Commerce
- Business Rules Engine
- Communications Cloud
- Consumer Goods Cloud
- Datorama
- Digital Engagement
- Education Cloud
- Education Data Architecture
- Einstein Analytics
- Einstein Bots
- Email Marketing
- Experience Cloud
- Financial Services Cloud
- High Velocity Sales
- Higher Education
- Integration
- Interaction Studio
- Journey Builder
- K-12 Architecture Kit
- Manufacturing Cloud
- Marketing Cloud
- Mobile Publisher
- MuleSoft
- MuleSoft Composer
- Nonprofit
- Nonprofit Cloud
- Nonprofit Success Pack
- Outbound Funds Module
- Pardot B2b Marketing Automation
- Program Management Module
- Quip
- Revenue Cloud
- Sales Cloud
- Sales Cloud Einstein
- Salesforce CPQ & Billing
- Salesforce Developer
- Salesforce Field Service
- Salesforce Health Cloud
- Salesforce Maps
- Salesforce Platform
- Salesforce Surveys
- Service Cloud
- Service Cloud Einstein
- Service Cloud Voice
- Slack
- Tableau
- Automation
- AwesomeAdmins
- Data Management
- EducationHelp
- Formulas
- IdeaExchange
- New Releases
- NonprofitHelp
- Salesforce Developer
- SalesforceLive
- TrailblazerCommunityHelp
- TrailblazerDX
- Trailhead Challenges
- Trailhead Superbadges
- TrailheadGO
Filter
After Spring ’25, to comply with increased email security standards, you’re required to verify the Email Address in My Email Settings.
Where: This change applies to Lightning Experience and Salesforce Classic in all editions except Database.com.
When: Salesforce enforces this update in Spring '25. To get the major release upgrade date for your instance, go to Trust Status, search for your instance, and click the maintenance tab.
Why: A verified email address is used to send emails from your account. This update allows increased accountability and security for email deliverability.
How: To comply with increased email security standards, emails fail to send from the return email address in My Email Settings until the address is verified. Instruct all users to visit their My Email Settings. Users can manually verify their email addresses by selecting Resend Verification Email and clicking the link in the email. If the resend option is unavailable, the return address is already verified. Users receive a verification email once per release until Spring ’25. The email includes the verification link.
This is the link to the release note - https://help.salesforce.com/s/articleView?id=release-notes.rn_general_verify_your_return_email_address_for_senders.htm&release=254&type=5
Before we ask all our users to check their email settings - is there something we can do to find out only the users who haven't verified their email addresses and ask only those users to verify their email ?
How are you all dealing with this update?
Today, 10:59 AM Hey Anindya,
I went through this exercise a couple of months ago and I also was wondering how to efficiently have a view of users with an unverified email address.
If you go to Users in Setup, you can create a Listview retrieving only users with an unverified email address by filtering on fields "User Verified Email" and "Active". I have done that and then simply highlighted the table and copied/pasted into an Excel spreadsheet.
Hope it helps! :)
I'm looking to get started with Salesforce B2B Commerce. Can anyone share the best resources, tips, or learning paths to help me get up to speed?
Also, are there any certifications or specific courses that would be beneficial for someone starting in this area?
Thanks in advance for your guidance!
From Control What Your Users Can Access Module. I am lost after this portion of the challege.
Today, 10:58 AM Hi @Katrina Rosiak I am a member of Trailhead Help, Can you please check with the above suggestions and let us know if the issue still exists or is resolved? If it is resolved, please post the solution or mark the above which helped you to resolve your query and mark it "Best Answer" to close this thread. If not, kindly provide a few more details of the badge along with the error message. Thank You!
++TrailheadHelpFollowUp
Can we show Product Image in FSL mobile app inventory?
Today, 10:56 AM Hello @Pavlo Shchur this should work with some limitations :
- the LWC will be only available as an action in the menu
- the file need to be primed before accessing (being part of the brief case, or clicked by the user while being online at least once)
Here more info about priming :
https://help.salesforce.com/s/articleView?id=service.mfs_offline_parent.htm&type=5
Today, 10:56 AM Hi @Rahul Chauhan I am a member of Trailhead Help, Can you please check with the above suggestions and let us know if the issue still exists or is resolved? If it is resolved, please post the solution or mark any one of them above which helped you to resolve your query and mark it "Best Answer" to close this thread. If not, kindly provide a few more details of the badge along with the error message. Thank You!
++TrailheadHelpFollowUp
Hi Everyone
I want to get the Manage Package version Number or Name through post install script to update custom metadata record, while upgrading the package in subscriber org.
I'm not getting any way to get this, I tried using System.requestVersion but it's not working.
#Salesforce Developer #Sales Cloud #Integration #Appexchage AppsI am getting an error when trying to validate my build: Step not yet complete in Agentforce
We can’t find the Get Sessions action. Make sure it has been created and has an API Name of 'Get_Sessions'.
I am not able to get the points for successfully completing this. Any ideas?
Today, 10:49 AM Hi @Paula Kautzmann I am a member of Trailhead Help, We see that you have successfully completed the badge Quick Start: Build Your First Agent with Agentforce. Please post the solution or mark any one of them above which helped you to resolve your query and mark it "Best Answer" to close this thread, and also it might help the fellow Trailblazer's who are facing the similar issue. Thank You!
Hello team, I am completing the module "Create a Simple Custom Report" and having troubles about the step below (the instruction highlighted by the red square).
As shown on the list view of "All Opportunities", I have selected all opportunities as the image below but don't know which one is the pencil icon and don't know how to change the Close Date in bulk.
Can anyone help me out about this?
Jan 3, 10:06 AM Hello@Heather Huang,
- Note: If you don't see checkboxes next to the opportunities, it may be because you've applied opportunity record types in this org. If so, apply the following filter to the all opportunities list view: Within the filter menu, click Add Filter > Field = Opportunity Record Type, Operator = equals, Value = 0 options selected > Click Done > Click Save.
- in there is no record type then select all opportunity , update the date for one record then check the checkbox to uptake all
Getting issue in validating the hands on challenge with the below error: The constructor MyIterable should accept parameter of type List<String>.
Here's my code snippet:
public class MyIterable implements Iterable<String>{ private List<String> strings; public MyIterable(List<String> strings){ this.strings= strings; } public Iterator<String> iterator() { return strings.iterator(); }}