Merge pull request #33345 from shariquerik/ignore-validation-email

This commit is contained in:
Shariq Ansari 2025-07-15 17:58:23 +05:30 committed by GitHub
commit 590be752ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,6 +55,7 @@ frappe.views.CommunicationComposer = class {
reqd: 0,
fieldname: "recipients",
default: this.get_default_recipients("recipients"),
ignore_validation: true,
onchange: function () {
me.sanitize_emails(this);
},
@ -77,6 +78,7 @@ frappe.views.CommunicationComposer = class {
fieldtype: "MultiSelect",
fieldname: "cc",
default: this.get_default_recipients("cc"),
ignore_validation: true,
onchange: function () {
me.sanitize_emails(this);
},
@ -86,6 +88,7 @@ frappe.views.CommunicationComposer = class {
fieldtype: "MultiSelect",
fieldname: "bcc",
default: this.get_default_recipients("bcc"),
ignore_validation: true,
onchange: function () {
me.sanitize_emails(this);
},