• I would like to be able to set a custom “send from” address for a particular email. Specifically the WooCommerce customer_new_account email. I am aware of the woocommerce_email_from_address filter and I am able to update the address using the following:

    function custom_send_from_address ( $from_email, $wc_email ) {
        if( $wc_email->id == 'customer_new_account' )
            $from_email = '[email protected]';
        return $from_email;
    }

    However, this only seems to update the “reply to” address, not the “sent from” address. We are using the fluentSMTP plugin as well. So I’m not sure if I am missing a step somewhere that would give WordPress access to this email address.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Zubair Zahid (woo-hc)

    (@doublezed2)

    Hello partynoparty,

    Thank you for contacting WooCommerce support.

    I understand your question about setting a custom “send from” address for the customer_new_account email.

    Please note that custom code falls outside our support policy.
    I suggest you contact FluentSMTP’s support for guidance. If you need further customization, posting in the Woo Community Slack or consulting a developer could help.

    Let me know if you have any questions.

    Best regards.

    Thread Starter partynoparty

    (@partynoparty)

    thanks. I’ll take a look at the slack channel.

    Plugin Support Zubair Zahid (woo-hc)

    (@doublezed2)

    Hello partynoparty,

    I appreciate your understanding.

    Please don’t hesitate to contact us again if you need help with WooCommerce.
    We are here to help ??

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.