• Resolved CLBD15

    (@clbd15)


    Is there any way to better format the emails that my client receives?
    This is what the client gets:

    Dear Anika, We would like to remind your appointment with Conscious Living by Design. Here are your appointment details: Requested service: Transvolution Combo Session Date and time: June 12, 2014 10:00 am Our staff will assist you for this service. Don’t forget to call me at your appointed time at 805-272-0961 Remember your Magnificence!, Dr.Angela B Conscious Living by Design

    It’s all ran together. This is what it looks like in Appointment settings:

    Dear CLIENT,

    We are pleased to confirm your appointment for SITE_NAME.

    Here are the appointment details:
    Requested service: SERVICE
    Date and time: DATE_TIME

    SERVICE_PROVIDER will assist you for this session.

    Your Session appointment is Set! I look forward to our time together, helping you discover and live your magnificent life!

    Until then
    Remember your Magnificence!,
    Dr.Angela B
    SITE_NAME

    The first email was from Gmail.

    Any help would be greatly appreciated.

    Thanks in advance
    CLBD15

    https://www.ads-software.com/plugins/appointments/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey there @clbd15,

    I hope you’re well today! ??

    Appointments uses wp_mail function and HTML is disabled as default.

    To enable HTML in emails, add these codes inside functions.php:

    function app_modify_headers( $headers ) {
        return str_replace( 'text/plain', 'text/html', $headers );
    }
    add_filter( 'app_message_headers', 'app_modify_headers' );

    This information is also available through plugin’s FAQ.

    Please don’t hesitate to let us know if there’s anything we can help with on that. ??

    Cheers,
    George

    Hey there @clbd15,

    Hope you found that snippet helpful. You can also add that to your site using the free Code Snippets plugin as well:
    https://www.ads-software.com/plugins/code-snippets/

    And that would allow you to use html tags within the emails. So you can not only space lines out, but also add a bit of styling. ??

    Just let us know if you have any questions. We’re happy to help!

    Cheers,
    David

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Formatting Client Emails’ is closed to new replies.