-
-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reduced SingleEmailMessage limit usage #570
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jongpie
added
Type: Bug
Something isn't working
Layer: Logger Engine
Items related to the core logging engine
Feature: Email Notifications
labels
Oct 12, 2023
jongpie
had a problem deploying
to
Experience Cloud Scratch Org
October 12, 2023 02:51
— with
GitHub Actions
Failure
jongpie
had a problem deploying
to
Base Scratch Org
October 12, 2023 02:51
— with
GitHub Actions
Failure
jongpie
force-pushed
the
bugfix/reduce-single-email-message-limit-usage
branch
from
October 12, 2023 03:09
7528d08
to
3b61e28
Compare
jongpie
temporarily deployed
to
Base Scratch Org
October 12, 2023 03:16
— with
GitHub Actions
Inactive
jongpie
temporarily deployed
to
Experience Cloud Scratch Org
October 12, 2023 03:16
— with
GitHub Actions
Inactive
…argetObjectId() when sending failure emails to internal users
jongpie
force-pushed
the
bugfix/reduce-single-email-message-limit-usage
branch
from
October 13, 2023 01:54
2117538
to
1bffa6b
Compare
jongpie
temporarily deployed
to
Base Scratch Org
October 13, 2023 01:57
— with
GitHub Actions
Inactive
jongpie
temporarily deployed
to
Experience Cloud Scratch Org
October 13, 2023 01:57
— with
GitHub Actions
Inactive
jongpie
temporarily deployed
to
Base Scratch Org
October 13, 2023 02:31
— with
GitHub Actions
Inactive
jongpie
temporarily deployed
to
Experience Cloud Scratch Org
October 13, 2023 02:31
— with
GitHub Actions
Inactive
…fore generating package versions, because they upset the sf cli ᕕ( ᐛ )ᕗ
jongpie
temporarily deployed
to
Base Scratch Org
October 13, 2023 02:55
— with
GitHub Actions
Inactive
jongpie
temporarily deployed
to
Experience Cloud Scratch Org
October 13, 2023 02:55
— with
GitHub Actions
Inactive
…lly generated new package version due to issues in the pipeline
…to pipeline errors
Codecov ReportAttention:
📢 Thoughts on this report? Let us know!. |
jongpie
added
the
Layer: Log Management
Items related to the custom objects & Logger Console app
label
Oct 15, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Feature: Email Notifications
Layer: Log Management
Items related to the custom objects & Logger Console app
Layer: Logger Engine
Items related to the core logging engine
Type: Bug
Something isn't working
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
LoggerEmailSender
ChangesApexEmailNotification.UserId
) of Salesforce users configured as recipients (labeled as '1' in the screenshot below) was passed to the instance methodMessaging.SingleEmailMessage.setToAddresses()
, resulting in the email counting as an email to an external email address, which has an org daily limit. You can check your org's limit using this Apex snippet:System.debug(OrgLimits.getMap().get('SingleEmail'));
ApexEmailNotification.UserId
) is passed to the instance methodMessaging.SingleEmailMessage.setTargetObjectId()
. UsingsetTargetObjectId()
to send emails to users does not count towards the org's daily limit