German Market: How can I only show the imprint in the footer of the mail? [closed]

Okay after digging around and trying to understand the syntax of wordpress’s API, I found the solution:

add_filter('wgm_email_display_terms', false);
add_filter('wgm_email_display_cancellation_policy', false);
add_filter('wgm_email_display_gerneral_customer_information_headline', false);
add_filter('wgm_email_display_delivery', false);
add_filter('wgm_email_display_payment_methods', false);

I hope this helps you!