Set a custom reply-to address

Set the Reply-To header after AutomateWoo creates the workflow mailer. Use a verified address for your domain.

Developer note:

Add custom PHP in a small custom plugin or child theme, and test it on a staging site before production. This example requires ongoing maintenance when extension APIs change.

functions.php

<?php

add_filter( 'automatewoo/workflow/mailer', 'my_store_workflow_reply_to' );

/**
 * Set the reply-to address for workflow emails.
 *
 * @param AutomateWoo\Mailer_Abstract $mailer Workflow mailer.
 * @return AutomateWoo\Mailer_Abstract
 */
function my_store_workflow_reply_to( $mailer ) {
	$mailer->set_reply_to( 'Customer Care <care@example.org>' );

	return $mailer;
}
Use of your personal data
We and our partners process your personal data (such as browsing data, IP Addresses, cookie information, and other unique identifiers) based on your consent and/or our legitimate interest to optimize our website, marketing activities, and your user experience.