Line 34 in /home/bradc/public_html/vendor/silverstripe/contentreview/src/Tasks/ContentReviewEmails.php
25 private array $invalid_emails = []; 26 27 /** 28 * @param HTTPRequest $request 29 * @throws RuntimeException 30 */ 31 public function run($request) 32 { 33 if (!$this->isValidEmail($senderEmail = SiteConfig::current_site_config()->ReviewFrom)) { 34 throw new RuntimeException( 35 sprintf( 36 'Provided sender email address is invalid: "%s".', 37 $senderEmail 38 ) 39 ); 40 }