mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 00:47:11 +02:00
Fix sender email address for invoicing alerts
It was failing to send alert emails because the email address it was constructing did not have permission through GAE to send emails. This switches it over to using the send from email address already in use elsewhere in the app that does successfully send emails. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219812019
This commit is contained in:
parent
6a870e5820
commit
f59005ad35
6 changed files with 14 additions and 29 deletions
|
@ -25,7 +25,7 @@ import javax.mail.internet.InternetAddress;
|
|||
/** Static utils for emailing reporting results. */
|
||||
public class ReportingEmailUtils {
|
||||
|
||||
@Inject @Config("alertSenderEmailAddress") String sender;
|
||||
@Inject @Config("gSuiteOutgoingEmailAddress") String sender;
|
||||
@Inject @Config("alertRecipientEmailAddress") String recipient;
|
||||
@Inject SendEmailService emailService;
|
||||
@Inject ReportingEmailUtils() {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue