See the limitations for sending mass emails. You can send mass email to a maximum of 5,000 external email addresses per day per licensed Salesforce org based on Greenwich Mean Time (GMT). The following limitations also apply to mass emails.
Month: March 2023
Financial – What’s the order of Execution to meet financial obligations for life
Personal Finance Order of Operations: 1) Create a budget to figure out expenses 2) Build a 1-month emergency fund 3) Maximize employer 401k matches to let free money compound 4) Pay off high-interest consumer debt 5) Save 3 to 6 months of expenses in an emergency fund The Financial Order of Operations: 6) Maximize Roth […]
Easy formulas to help new investors know if a rental property will cash flow.
The 1% rule This rule states that when buying a property, the goal “should” be to have monthly rent be at least 1% of purchase price. Ex: If price is $220,000 you would want rent to be at least $2,200/mo. The 50% rule This rule states that on average, ~50% of total gross income “could” […]
Retirement Planning
What are my options: Roth IRA Index Funds Source: Image source twitter
Insurances needs for day to day life
– Life – car – Health – Umbrella – Long term disability – ID theft (“insurance”) – Audit Insurance – Property Insurance
Query to find Permission sets assigned to Users
DescriptionBelow is the SOQL query we can create using Workbench to capture the Permission Sets associated with a given User or Profile via the Permission Set Assignment object ResolutionQuery: SELECT Id, PermissionSetId, PermissionSet.Name, PermissionSet.ProfileId, PermissionSet.Profile.Name, AssigneeId, Assignee.Name FROM PermissionSetAssignment WHERE Assignee.Name = ‘JOHN SMITH’ Or retrieve all users associated with a specific PermissionSet like: SELECT Id, PermissionSetId, PermissionSet.Name, PermissionSet.ProfileId, PermissionSet.Profile.Name, AssigneeId, Assignee.Name FROM PermissionSetAssignment WHERE PermissionSet.Name = ‘Custom […]