• Resolved RockSolid Design

    (@cfmwebdesign)


    Is there a way to translate the text in the ‘carbon copy’ email that is send?

    “Message sent from your contact form.”

    “This is a carbon copy of the message you sent via”

    I could not find these in the Customize tab.

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jeff Starr

    (@specialk)

    For “Message sent from your contact form” you can customize via the “Default Subject” setting (under the Customize tab).

    For “This is a carbon copy of the message” it is not customizable at this time. I will add a filter hook to the next plugin update so that it can be changed programmatically.

    Thank you for the feedback, feel free to post again with any further questions, etc. Glad to help anytime.

    Thread Starter RockSolid Design

    (@cfmwebdesign)

    Ok great! I’m looking forward to the next update then.

    Cheers!

    Plugin Author Jeff Starr

    (@specialk)

    Just to follow up with this, the carbon message is filterable in the next version of CFX (2.3). Just add the following code:

    function contactformx_send_carbon_message($carbon_message) {
    	
    	return 'Change this text to whatever you want: '. "\n\n";
    	
    }
    add_filter('contactformx_send_carbon_message', 'contactformx_send_carbon_message');

    You can keep or remove the line breaks and customize however is necessary.

    Thanks again for the feedback, much appreciated.

    • This reply was modified 3 years, 8 months ago by Jeff Starr.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Carbon copy email translation’ is closed to new replies.