Sign up (with export icon)

EmailConfigurationConfig

Api-interface icon interface

The configuration of the email integration feature.

	ClassicEditor
		.create( editorElement, {
			email: ... // Email integration feature options.
		} )
		.then( ... )
		.catch( ... );
Copy code

See all editor configuration options.

Properties

  • Chevron-right icon

    logs : object | undefined

    Configuration for warning or log messages about email client compatibility.

    ClassicEditor
    	.create( editorElement, {
    		email: {
    			logs: {
    				suppressAll: false,
    				suppress: [
    					'email-configuration-unsupported-reversed-list',
    					'email-configuration-missing-empty-block-plugin',
    					// ... other warning codes
    				]
    			}
    		}
    	} )
    
    Copy code