Title: Custom Email Support
Last modified: July 3, 2020

---

# Custom Email Support

 *  [Sayan Datta](https://wordpress.org/support/users/infosatech/)
 * (@infosatech)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/custom-email-support/)
 * Hello [@britner](https://wordpress.org/support/users/britner/)
 * I am using WooCommerce Order Status Manager by SkyVerge. How to integrate Custom
   Email Template created by the plugin? Do you have any filter available?
 * Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/custom-email-support/#post-13069039)
 * Hi Sayan,
    This plugin only supports WooCommerce core email types. To add another
   type created by third-party plugins they would just need to hook in their emails.
   If you want you can have them reach out to us to collaborate and add support.
   Let me know how I can further help!
 * Best,
    Hannah
 *  Thread Starter [Sayan Datta](https://wordpress.org/support/users/infosatech/)
 * (@infosatech)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/custom-email-support/#post-13069047)
 * Hello,
 * How to collaborate?
 *  Plugin Contributor [Ben Ritner – Kadence WP](https://wordpress.org/support/users/britner/)
 * (@britner)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/custom-email-support/#post-13069135)
 * Hey,
    To clarify, those emails would already inherit the styling you set up in
   our plugin. For example the header and footer.
 * The content of those emails are fully editable from within the WooCommerce Order
   Status Manager settings so you don’t need out plugin to edit the text like you
   do with core emails.
 * To preview emails in the customizer that requires hooking into our plugin and
   telling it how to generate a preview. That looks like this:
 *     ```
       function custom_add_email_previews( $emails = array() ) {
       $args = array(
       'email_type' => 'email_example_slug',
       'email_name' => 'Email Example',
       'email_class' => 'Custom_WC_Email_Extend',
       'email_heading' => __( 'Placeholder for Heading', 'plugin' ),
       );
       $emails[] = $args;
       return $emails;
       }
       add_filter( 'kadence_woocommerce_email_previews', 'custom_add_email_previews' );
       ```
   
 * To actually edit the text is another step and would require you to override the
   email template to add an action to would check for body text set by this plugin.
   I don’t suggest you do this. Ideally for this kind of integration the plugin 
   author is in communication with us (simply giving us access to their product 
   is the biggest thing) and then we can create that integration at that level.
 * Ben

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Custom Email Support’ is closed to new replies.

 * ![](https://ps.w.org/kadence-woocommerce-email-designer/assets/icon-256x256.png?
   rev=3115863)
 * [Kadence WooCommerce Email Designer](https://wordpress.org/plugins/kadence-woocommerce-email-designer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/kadence-woocommerce-email-designer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/)
 * [Active Topics](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Ben Ritner – Kadence WP](https://wordpress.org/support/users/britner/)
 * Last activity: [5 years, 10 months ago](https://wordpress.org/support/topic/custom-email-support/#post-13069135)
 * Status: not resolved