2015-07-24 04:37:48 +02:00
< ? php
2017-08-09 01:55:09 +02:00
namespace SilverStripe\UserForms\Model\Recipient ;
2017-08-11 01:33:06 +02:00
use SilverStripe\Assets\FileFinder ;
use SilverStripe\CMS\Controllers\CMSMain ;
use SilverStripe\CMS\Controllers\CMSPageEditController ;
use SilverStripe\Control\Controller ;
2017-08-09 01:55:09 +02:00
use SilverStripe\Control\Email\Email ;
use SilverStripe\Control\Session ;
2017-08-13 23:26:53 +02:00
use SilverStripe\Core\Manifest\ModuleLoader ;
2017-08-11 01:33:06 +02:00
use SilverStripe\Forms\CheckboxField ;
2017-08-09 01:55:09 +02:00
use SilverStripe\Forms\DropdownField ;
use SilverStripe\Forms\FieldGroup ;
2017-08-11 01:33:06 +02:00
use SilverStripe\Forms\FieldList ;
use SilverStripe\Forms\Form ;
use SilverStripe\Forms\GridField\GridField ;
use SilverStripe\Forms\GridField\GridFieldButtonRow ;
use SilverStripe\Forms\GridField\GridFieldConfig ;
use SilverStripe\Forms\GridField\GridFieldDeleteAction ;
use SilverStripe\Forms\GridField\GridFieldToolbarHeader ;
2017-08-09 01:55:09 +02:00
use SilverStripe\Forms\HTMLEditor\HTMLEditorField ;
use SilverStripe\Forms\LiteralField ;
2017-08-11 01:33:06 +02:00
use SilverStripe\Forms\TabSet ;
use SilverStripe\Forms\TextareaField ;
use SilverStripe\Forms\TextField ;
use SilverStripe\ORM\ArrayList ;
2017-08-09 01:55:09 +02:00
use SilverStripe\ORM\DataObject ;
2017-08-11 01:33:06 +02:00
use SilverStripe\UserForms\Model\EditableFormField\EditableEmailField ;
2017-08-11 02:36:28 +02:00
use SilverStripe\UserForms\Model\EditableFormField ;
2017-08-11 01:33:06 +02:00
use SilverStripe\UserForms\Model\EditableFormField\EditableMultipleOptionField ;
use SilverStripe\UserForms\Model\EditableFormField\EditableTextField ;
use SilverStripe\UserForms\Model\Recipient\EmailRecipientCondition ;
use SilverStripe\UserForms\Model\UserDefinedForm ;
use SilverStripe\View\Requirements ;
use Symbiote\GridFieldExtensions\GridFieldAddNewInlineButton ;
use Symbiote\GridFieldExtensions\GridFieldEditableColumns ;
2015-07-24 04:37:48 +02:00
/**
* A Form can have multiply members / emails to email the submission
* to and custom subjects
*
* @ package userforms
*/
2017-08-11 01:33:06 +02:00
class EmailRecipient extends DataObject
2016-07-21 07:53:59 +02:00
{
2017-08-11 01:33:06 +02:00
private static $db = [
2016-07-21 07:53:59 +02:00
'EmailAddress' => 'Varchar(200)' ,
'EmailSubject' => 'Varchar(200)' ,
'EmailFrom' => 'Varchar(200)' ,
'EmailReplyTo' => 'Varchar(200)' ,
'EmailBody' => 'Text' ,
'EmailBodyHtml' => 'HTMLText' ,
'EmailTemplate' => 'Varchar' ,
'SendPlain' => 'Boolean' ,
'HideFormData' => 'Boolean' ,
'CustomRulesCondition' => 'Enum("And,Or")'
2017-08-11 01:33:06 +02:00
];
2016-07-21 07:53:59 +02:00
2017-08-11 01:33:06 +02:00
private static $has_one = [
2017-08-09 01:55:09 +02:00
'Form' => UserDefinedForm :: class ,
'SendEmailFromField' => EditableFormField :: class ,
'SendEmailToField' => EditableFormField :: class ,
'SendEmailSubjectField' => EditableFormField :: class
2017-08-11 01:33:06 +02:00
];
2016-07-21 07:53:59 +02:00
2017-08-11 01:33:06 +02:00
private static $has_many = [
2017-08-15 05:30:59 +02:00
'CustomRules' => EmailRecipientCondition :: class ,
];
private static $owns = [
'CustomRules' ,
];
private static $cascade_deetes = [
'CustomRules' ,
2017-08-11 01:33:06 +02:00
];
2016-07-21 07:53:59 +02:00
2017-08-11 01:33:06 +02:00
private static $summary_fields = [
2016-07-21 07:53:59 +02:00
'EmailAddress' ,
'EmailSubject' ,
'EmailFrom'
2017-08-11 01:33:06 +02:00
];
private static $table_name = 'UserDefinedForm_EmailRecipient' ;
2016-07-21 07:53:59 +02:00
/**
* Setting this to true will allow you to select " risky " fields as
* email recipient , such as free - text entry fields .
*
* It ' s advisable to leave this off .
*
* @ config
* @ var bool
*/
private static $allow_unbound_recipient_fields = false ;
public function summaryFields ()
{
$fields = parent :: summaryFields ();
if ( isset ( $fields [ 'EmailAddress' ])) {
2017-08-11 01:33:06 +02:00
$fields [ 'EmailAddress' ] = _t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILADDRESS' , Email :: class );
2016-07-21 07:53:59 +02:00
}
if ( isset ( $fields [ 'EmailSubject' ])) {
2017-08-11 01:33:06 +02:00
$fields [ 'EmailSubject' ] = _t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILSUBJECT' , 'Subject' );
2016-07-21 07:53:59 +02:00
}
if ( isset ( $fields [ 'EmailFrom' ])) {
2017-08-11 01:33:06 +02:00
$fields [ 'EmailFrom' ] = _t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILFROM' , 'From' );
2016-07-21 07:53:59 +02:00
}
return $fields ;
}
/**
* Get instance of UserDefinedForm when editing in getCMSFields
*
* @ return UserDefinedFrom
*/
protected function getFormParent ()
{
$formID = $this -> FormID
? $this -> FormID
: Session :: get ( 'CMSMain.currentPage' );
return UserDefinedForm :: get () -> byID ( $formID );
}
public function getTitle ()
{
if ( $this -> EmailAddress ) {
return $this -> EmailAddress ;
}
if ( $this -> EmailSubject ) {
return $this -> EmailSubject ;
}
return parent :: getTitle ();
}
/**
* Generate a gridfield config for editing filter rules
*
* @ return GridFieldConfig
*/
protected function getRulesConfig ()
{
$formFields = $this -> getFormParent () -> Fields ();
$config = GridFieldConfig :: create ()
-> addComponents (
new GridFieldButtonRow ( 'before' ),
new GridFieldToolbarHeader (),
new GridFieldAddNewInlineButton (),
new GridFieldDeleteAction (),
$columns = new GridFieldEditableColumns ()
);
$columns -> setDisplayFields ( array (
'ConditionFieldID' => function ( $record , $column , $grid ) use ( $formFields ) {
return DropdownField :: create ( $column , false , $formFields -> map ( 'ID' , 'Title' ));
},
'ConditionOption' => function ( $record , $column , $grid ) {
2017-08-11 01:33:06 +02:00
$options = EmailRecipientCondition :: config () -> condition_options ;
2016-07-21 07:53:59 +02:00
return DropdownField :: create ( $column , false , $options );
},
'ConditionValue' => function ( $record , $column , $grid ) {
return TextField :: create ( $column );
}
));
return $config ;
}
/**
* @ return FieldList
*/
public function getCMSFields ()
{
2017-08-13 23:26:53 +02:00
Requirements :: javascript (
ModuleLoader :: getModule ( 'silverstripe/userforms' ) -> getRelativeResourcePath ( 'javascript/Recipient.js' )
);
2016-07-21 07:53:59 +02:00
// Determine optional field values
$form = $this -> getFormParent ();
// predefined choices are also candidates
$multiOptionFields = EditableMultipleOptionField :: get () -> filter ( 'ParentID' , $form -> ID );
// if they have email fields then we could send from it
$validEmailFromFields = EditableEmailField :: get () -> filter ( 'ParentID' , $form -> ID );
// For the subject, only one-line entry boxes make sense
$validSubjectFields = ArrayList :: create (
EditableTextField :: get ()
-> filter ( 'ParentID' , $form -> ID )
-> exclude ( 'Rows:GreaterThan' , 1 )
-> toArray ()
);
$validSubjectFields -> merge ( $multiOptionFields );
// Check valid email-recipient fields
2017-08-11 01:33:06 +02:00
if ( $this -> config () -> get ( 'allow_unbound_recipient_fields' )) {
2016-07-21 07:53:59 +02:00
// To address can only be email fields or multi option fields
$validEmailToFields = ArrayList :: create ( $validEmailFromFields -> toArray ());
$validEmailToFields -> merge ( $multiOptionFields );
} else {
// To address cannot be unbound, so restrict to pre-defined lists
2017-05-15 08:03:51 +02:00
$validEmailToFields = $multiOptionFields ;
2016-07-21 07:53:59 +02:00
}
// Build fieldlist
$fields = FieldList :: create ( Tabset :: create ( 'Root' ) -> addExtraClass ( 'EmailRecipientForm' ));
// Configuration fields
2017-08-11 01:33:06 +02:00
$fields -> addFieldsToTab ( 'Root.EmailDetails' , [
2016-07-21 07:53:59 +02:00
// Subject
FieldGroup :: create (
2017-08-11 01:33:06 +02:00
TextField :: create (
'EmailSubject' ,
_t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.TYPESUBJECT' , 'Type subject' )
)
2016-07-21 07:53:59 +02:00
-> setAttribute ( 'style' , 'min-width: 400px;' ),
DropdownField :: create (
'SendEmailSubjectFieldID' ,
2017-08-11 01:33:06 +02:00
_t (
'SilverStripe\\UserForms\\Model\\UserDefinedForm.SELECTAFIELDTOSETSUBJECT' ,
'.. or select a field to use as the subject'
),
2016-07-21 07:53:59 +02:00
$validSubjectFields -> map ( 'ID' , 'Title' )
) -> setEmptyString ( '' )
)
2017-08-11 01:33:06 +02:00
-> setTitle ( _t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILSUBJECT' , 'Email subject' )),
2016-07-21 07:53:59 +02:00
// To
FieldGroup :: create (
2017-08-11 01:33:06 +02:00
TextField :: create (
'EmailAddress' ,
_t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.TYPETO' , 'Type to address' )
)
2016-07-21 07:53:59 +02:00
-> setAttribute ( 'style' , 'min-width: 400px;' ),
DropdownField :: create (
'SendEmailToFieldID' ,
2017-08-11 01:33:06 +02:00
_t (
'SilverStripe\\UserForms\\Model\\UserDefinedForm.ORSELECTAFIELDTOUSEASTO' ,
'.. or select a field to use as the to address'
),
2016-07-21 07:53:59 +02:00
$validEmailToFields -> map ( 'ID' , 'Title' )
) -> setEmptyString ( ' ' )
)
2017-08-11 01:33:06 +02:00
-> setTitle ( _t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDEMAILTO' , 'Send email to' ))
2016-07-21 07:53:59 +02:00
-> setDescription ( _t (
2017-08-11 01:33:06 +02:00
'SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDEMAILTO_DESCRIPTION' ,
2016-07-21 07:53:59 +02:00
'You may enter multiple email addresses as a comma separated list.'
)),
// From
2017-08-11 01:33:06 +02:00
TextField :: create (
'EmailFrom' ,
_t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.FROMADDRESS' , 'Send email from' )
)
2016-07-21 07:53:59 +02:00
-> setDescription ( _t (
2017-08-11 01:33:06 +02:00
'SilverStripe\\UserForms\\Model\\UserDefinedForm.EmailFromContent' ,
2016-07-21 07:53:59 +02:00
" The from address allows you to set who the email comes from. On most servers this " .
" will need to be set to an email address on the same domain name as your site. " .
" For example on yoursite.com the from address may need to be something@yoursite.com. " .
" You can however, set any email address you wish as the reply to address. "
)),
// Reply-To
FieldGroup :: create (
2017-08-11 01:33:06 +02:00
TextField :: create ( 'EmailReplyTo' , _t (
'SilverStripe\\UserForms\\Model\\UserDefinedForm.TYPEREPLY' ,
'Type reply address'
))
2016-07-21 07:53:59 +02:00
-> setAttribute ( 'style' , 'min-width: 400px;' ),
DropdownField :: create (
'SendEmailFromFieldID' ,
2017-08-11 01:33:06 +02:00
_t (
'SilverStripe\\UserForms\\Model\\UserDefinedForm.ORSELECTAFIELDTOUSEASFROM' ,
'.. or select a field to use as reply to address'
),
2016-07-21 07:53:59 +02:00
$validEmailFromFields -> map ( 'ID' , 'Title' )
) -> setEmptyString ( ' ' )
)
2017-08-11 01:33:06 +02:00
-> setTitle ( _t (
'SilverStripe\\UserForms\\Model\\UserDefinedForm.REPLYADDRESS' ,
'Email for reply to'
))
2016-07-21 07:53:59 +02:00
-> setDescription ( _t (
2017-08-11 01:33:06 +02:00
'SilverStripe\\UserForms\\Model\\UserDefinedForm.REPLYADDRESS_DESCRIPTION' ,
2016-07-21 07:53:59 +02:00
'The email address which the recipient is able to \'reply\' to.'
))
2017-08-11 01:33:06 +02:00
]);
2017-06-21 05:42:18 +02:00
2017-08-13 23:26:53 +02:00
$fields -> fieldByName ( 'Root.EmailDetails' ) -> setTitle ( _t ( __CLASS__ . '.EMAILDETAILSTAB' , 'Email Details' ));
2016-07-21 07:53:59 +02:00
// Only show the preview link if the recipient has been saved.
if ( ! empty ( $this -> EmailTemplate )) {
$preview = sprintf (
'<p><a href="%s" target="_blank" class="ss-ui-button">%s</a></p><em>%s</em>' ,
2017-06-21 05:42:18 +02:00
Controller :: join_links (
2017-08-09 01:55:09 +02:00
singleton ( CMSPageEditController :: class ) -> getEditForm () -> FormAction (),
2017-06-21 05:42:18 +02:00
" field/EmailRecipients/item/ { $this -> ID } /preview "
),
2017-08-11 01:33:06 +02:00
_t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.PREVIEW_EMAIL' , 'Preview email' ),
_t (
'SilverStripe\\UserForms\\Model\\UserDefinedForm.PREVIEW_EMAIL_DESCRIPTION' ,
'Note: Unsaved changes will not appear in the preview.'
)
2016-07-21 07:53:59 +02:00
);
} else {
$preview = sprintf (
'<em>%s</em>' ,
_t (
2017-08-11 01:33:06 +02:00
'SilverStripe\\UserForms\\Model\\UserDefinedForm.PREVIEW_EMAIL_UNAVAILABLE' ,
2016-07-21 07:53:59 +02:00
'You can preview this email once you have saved the Recipient.'
)
);
}
// Email templates
2017-08-11 01:33:06 +02:00
$fields -> addFieldsToTab ( 'Root.EmailContent' , [
CheckboxField :: create (
'HideFormData' ,
_t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.HIDEFORMDATA' , 'Hide form data from email?' )
),
2016-07-21 07:53:59 +02:00
CheckboxField :: create (
'SendPlain' ,
2017-08-11 01:33:06 +02:00
_t (
'SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDPLAIN' ,
'Send email as plain text? (HTML will be stripped)'
)
2016-07-21 07:53:59 +02:00
),
DropdownField :: create (
'EmailTemplate' ,
2017-08-11 01:33:06 +02:00
_t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILTEMPLATE' , 'Email template' ),
2016-07-21 07:53:59 +02:00
$this -> getEmailTemplateDropdownValues ()
) -> addExtraClass ( 'toggle-html-only' ),
2017-08-11 01:33:06 +02:00
HTMLEditorField :: create (
'EmailBodyHtml' ,
_t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILBODYHTML' , 'Body' )
)
2016-07-21 07:53:59 +02:00
-> addExtraClass ( 'toggle-html-only' ),
2017-08-11 01:33:06 +02:00
TextareaField :: create (
'EmailBody' ,
_t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.EMAILBODY' , 'Body' )
)
2016-07-21 07:53:59 +02:00
-> addExtraClass ( 'toggle-plain-only' ),
2017-06-09 01:04:52 +02:00
LiteralField :: create ( 'EmailPreview' , $preview )
2017-08-22 01:30:37 +02:00
]);
2017-06-09 00:38:49 +02:00
2017-08-13 23:26:53 +02:00
$fields -> fieldByName ( 'Root.EmailContent' ) -> setTitle ( _t ( __CLASS__ . '.EMAILCONTENTTAB' , 'Email Content' ));
2016-07-21 07:53:59 +02:00
// Custom rules for sending this field
2017-08-11 01:33:06 +02:00
$grid = GridField :: create (
'CustomRules' ,
_t ( 'SilverStripe\\UserForms\\Model\\EditableFormField.CUSTOMRULES' , 'Custom Rules' ),
2016-07-21 07:53:59 +02:00
$this -> CustomRules (),
$this -> getRulesConfig ()
);
$grid -> setDescription ( _t (
2017-08-11 01:33:06 +02:00
'SilverStripe\\UserForms\\Model\\UserDefinedForm.RulesDescription' ,
2016-07-21 07:53:59 +02:00
'Emails will only be sent to the recipient if the custom rules are met. If no rules are defined, this receipient will receive notifications for every submission.'
));
2017-08-11 01:33:06 +02:00
$fields -> addFieldsToTab ( 'Root.CustomRules' , [
DropdownField :: create (
2016-07-21 07:53:59 +02:00
'CustomRulesCondition' ,
2017-08-11 01:33:06 +02:00
_t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDIF' , 'Send condition' ),
[
'Or' => _t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDIFOR' , 'Any conditions are true' ),
'And' => _t ( 'SilverStripe\\UserForms\\Model\\UserDefinedForm.SENDIFAND' , 'All conditions are true' )
]
2016-07-21 07:53:59 +02:00
),
$grid
2017-08-11 01:33:06 +02:00
]);
2017-06-09 00:38:49 +02:00
2017-08-13 23:26:53 +02:00
$fields -> fieldByName ( 'Root.CustomRules' ) -> setTitle ( _t ( __CLASS__ . '.CUSTOMRULESTAB' , 'Custom Rules' ));
2016-07-21 07:53:59 +02:00
$this -> extend ( 'updateCMSFields' , $fields );
return $fields ;
}
/**
* Return whether a user can create an object of this type
*
2015-12-22 23:14:36 +01:00
* @ param Member $member
* @ param array $context Virtual parameter to allow context to be passed in to check
2016-07-21 07:53:59 +02:00
* @ return bool
*/
2017-08-11 02:36:28 +02:00
public function canCreate ( $member = null , $context = [])
2016-07-21 07:53:59 +02:00
{
// Check parent page
2015-12-22 23:14:36 +01:00
$parent = $this -> getCanCreateContext ( func_get_args ());
2016-07-21 07:53:59 +02:00
if ( $parent ) {
2015-12-22 23:14:36 +01:00
return $parent -> canEdit ( $member );
}
// Fall back to secure admin permissions
return parent :: canCreate ( $member );
2016-07-21 07:53:59 +02:00
}
2015-07-24 04:37:48 +02:00
2015-12-22 23:14:36 +01:00
/**
* Helper method to check the parent for this object
*
* @ param array $args List of arguments passed to canCreate
* @ return SiteTree Parent page instance
*/
2016-07-21 07:53:59 +02:00
protected function getCanCreateContext ( $args )
{
2015-12-22 23:14:36 +01:00
// Inspect second parameter to canCreate for a 'Parent' context
2017-08-09 01:55:09 +02:00
if ( isset ( $args [ 1 ][ Form :: class ])) {
return $args [ 1 ][ Form :: class ];
2015-12-22 23:14:36 +01:00
}
// Hack in currently edited page if context is missing
2016-07-21 07:53:59 +02:00
if ( Controller :: has_curr () && Controller :: curr () instanceof CMSMain ) {
2015-12-22 23:14:36 +01:00
return Controller :: curr () -> currentPage ();
}
// No page being edited
return null ;
}
2016-07-21 07:53:59 +02:00
/**
* @ param Member
*
* @ return boolean
*/
public function canView ( $member = null )
{
return $this -> Form () -> canView ( $member );
}
/**
* @ param Member
*
* @ return boolean
*/
public function canEdit ( $member = null )
{
return $this -> Form () -> canEdit ( $member );
}
/**
* @ param Member
*
* @ return boolean
*/
public function canDelete ( $member = null )
{
return $this -> canEdit ( $member );
}
/*
* Determine if this recipient may receive notifications for this submission
*
* @ param array $data
* @ param Form $form
* @ return bool
*/
public function canSend ( $data , $form )
{
// Skip if no rules configured
$customRules = $this -> CustomRules ();
if ( ! $customRules -> count ()) {
return true ;
}
// Check all rules
$isAnd = $this -> CustomRulesCondition === 'And' ;
foreach ( $customRules as $customRule ) {
2017-08-11 01:33:06 +02:00
/** @var EmailRecipientCondition $customRule */
2017-05-15 08:03:51 +02:00
$matches = $customRule -> matches ( $data );
2016-07-21 07:53:59 +02:00
if ( $isAnd && ! $matches ) {
return false ;
}
if ( ! $isAnd && $matches ) {
return true ;
}
}
// Once all rules are checked
return $isAnd ;
}
/**
* Make sure the email template saved against the recipient exists on the file system .
*
* @ param string
*
* @ return boolean
*/
public function emailTemplateExists ( $template = '' )
{
$t = ( $template ? $template : $this -> EmailTemplate );
return in_array ( $t , $this -> getEmailTemplateDropdownValues ());
}
/**
* Get the email body for the current email format
*
* @ return string
*/
public function getEmailBodyContent ()
{
2017-06-09 00:38:49 +02:00
if ( $this -> SendPlain ) {
return DBField :: create_field ( 'HTMLText' , $this -> EmailBody ) -> NoHTML ();
}
return DBField :: create_field ( 'HTMLText' , $this -> EmailBodyHtml ) -> RAW ();
2016-07-21 07:53:59 +02:00
}
/**
* Gets a list of email templates suitable for populating the email template dropdown .
*
* @ return array
*/
public function getEmailTemplateDropdownValues ()
{
2017-08-11 01:33:06 +02:00
$templates = [];
2016-07-21 07:53:59 +02:00
2017-08-09 01:55:09 +02:00
$finder = new FileFinder ();
2016-07-21 07:53:59 +02:00
$finder -> setOption ( 'name_regex' , '/^.*\.ss$/' );
2017-08-16 01:57:50 +02:00
$templateDirectory = UserDefinedForm :: config () -> get ( 'email_template_directory' );
// Handle cases where "userforms" might not be the base module directory, e.g. in a Travis build
if ( ! file_exists ( $templateDirectory ) && substr ( $templateDirectory , 0 , 10 ) === 'userforms/' ) {
$templateDirectory = substr ( $templateDirectory , 10 );
}
$found = $finder -> find ( BASE_PATH . '/' . $templateDirectory );
2016-07-21 07:53:59 +02:00
foreach ( $found as $key => $value ) {
$template = pathinfo ( $value );
$templates [ $template [ 'filename' ]] = $template [ 'filename' ];
}
return $templates ;
}
2017-01-08 23:06:17 +01:00
/**
* Validate that valid email addresses are being used
*
* @ return ValidationResult
*/
2017-08-11 02:37:03 +02:00
public function validate ()
{
2017-01-08 23:06:17 +01:00
$result = parent :: validate ();
2017-08-11 01:33:06 +02:00
$checkEmail = [
2017-01-08 23:06:17 +01:00
'EmailAddress' => 'EMAILADDRESSINVALID' ,
'EmailFrom' => 'EMAILFROMINVALID' ,
2017-07-20 11:40:34 +02:00
'EmailReplyTo' => 'EMAILREPLYTOINVALID' ,
2017-08-11 01:33:06 +02:00
];
2017-01-08 23:06:17 +01:00
foreach ( $checkEmail as $check => $translation ) {
2017-07-20 11:40:34 +02:00
if ( $this -> $check ) {
2017-01-08 23:06:17 +01:00
//may be a comma separated list of emails
$addresses = explode ( ',' , $this -> $check );
foreach ( $addresses as $address ) {
$trimAddress = trim ( $address );
2017-07-20 11:40:34 +02:00
if ( $trimAddress && ! Email :: is_valid_address ( $trimAddress )) {
2017-08-11 02:37:03 +02:00
$error = _t (
2017-08-13 23:26:53 +02:00
__CLASS__ . " . $translation " ,
2017-08-11 02:37:03 +02:00
" Invalid email address $trimAddress "
);
2017-08-14 00:52:48 +02:00
$result -> addError ( $error . " ( $trimAddress ) " );
2017-01-08 23:06:17 +01:00
}
}
}
}
return $result ;
}
2015-07-24 04:37:48 +02:00
}