You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that the form submission is being processed asynchronously with the following:
<script>
$(document).ready(function(){
var form = $('#contact-form');
form.submit(function(e) {
// prevent form submission
e.preventDefault();
// Start spinner here?
document.getElementById('contact-spinner').setAttribute('class', 'visible');
// submit the form via Ajax
$.ajax({
url: form.attr('action'),
type: form.attr('method'),
dataType: 'html',
data: form.serialize(),
success: function(result) {
// Inject the result in the HTML
$('#form-result').html(result);
}
});
// scroll to message region
document.getElementById('myIdLocation').scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
The text was updated successfully, but these errors were encountered:
With the RFC 5322 standard mailbox
John Doe <[email protected]>
address stored in site.yaml as follows:And the form configured as follows:
The email is not sent. If I modify the mailbox address to just
[email protected]>
like so:The email is sent.
Note that the form submission is being processed asynchronously with the following:
The text was updated successfully, but these errors were encountered: