mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Updates for send email validation
This commit is contained in:
parent
4bf7e07514
commit
dfcf8e0a39
@ -15,6 +15,23 @@ use Illuminate\Support\Facades\App;
|
|||||||
|
|
||||||
class EmailTemplateDefaults
|
class EmailTemplateDefaults
|
||||||
{
|
{
|
||||||
|
public array $templates = [
|
||||||
|
'email_template_invoice',
|
||||||
|
'email_template_quote',
|
||||||
|
'email_template_credit',
|
||||||
|
'email_template_payment',
|
||||||
|
'email_template_payment_partial',
|
||||||
|
'email_template_statement',
|
||||||
|
'email_template_reminder1',
|
||||||
|
'email_template_reminder2',
|
||||||
|
'email_template_reminder3',
|
||||||
|
'email_template_reminder_endless',
|
||||||
|
'email_template_custom1',
|
||||||
|
'email_template_custom2',
|
||||||
|
'email_template_custom3',
|
||||||
|
'email_template_purchase_order',
|
||||||
|
];
|
||||||
|
|
||||||
public static function getDefaultTemplate($template, $locale)
|
public static function getDefaultTemplate($template, $locale)
|
||||||
{
|
{
|
||||||
App::setLocale($locale);
|
App::setLocale($locale);
|
||||||
|
@ -24,6 +24,24 @@ class SendEmailRequest extends Request
|
|||||||
|
|
||||||
private string $entity_plural = '';
|
private string $entity_plural = '';
|
||||||
private string $error_message = '';
|
private string $error_message = '';
|
||||||
|
|
||||||
|
public array $templates = [
|
||||||
|
'email_template_invoice',
|
||||||
|
'email_template_quote',
|
||||||
|
'email_template_credit',
|
||||||
|
'email_template_payment',
|
||||||
|
'email_template_payment_partial',
|
||||||
|
'email_template_statement',
|
||||||
|
'email_template_reminder1',
|
||||||
|
'email_template_reminder2',
|
||||||
|
'email_template_reminder3',
|
||||||
|
'email_template_reminder_endless',
|
||||||
|
'email_template_custom1',
|
||||||
|
'email_template_custom2',
|
||||||
|
'email_template_custom3',
|
||||||
|
'email_template_purchase_order',
|
||||||
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine if the user is authorized to make this request.
|
* Determine if the user is authorized to make this request.
|
||||||
*
|
*
|
||||||
@ -45,13 +63,12 @@ class SendEmailRequest extends Request
|
|||||||
$user = auth()->user();
|
$user = auth()->user();
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'template' => 'bail|required',
|
'template' => 'bail|required|in:'.implode(',', $this->templates),
|
||||||
'entity' => 'bail|required|in:App\Models\Invoice,App\Models\Quote,App\Models\Credit,App\Models\RecurringInvoice,App\Models\PurchaseOrder,App\Models\Payment',
|
'entity' => 'bail|required|in:App\Models\Invoice,App\Models\Quote,App\Models\Credit,App\Models\RecurringInvoice,App\Models\PurchaseOrder,App\Models\Payment',
|
||||||
'entity_id' => ['bail', 'required', Rule::exists($this->entity_plural, 'id')->where('company_id', $user->company()->id)],
|
'entity_id' => ['bail', 'required', Rule::exists($this->entity_plural, 'id')->where('company_id', $user->company()->id)],
|
||||||
'cc_email.*' => 'bail|sometimes|email',
|
'cc_email.*' => 'bail|sometimes|email',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function prepareForValidation()
|
public function prepareForValidation()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user