• Resolved nemanjazikic

    (@nemanjazikic)


    Hi Nikola,

    Great plugin.

    For HTML mail notifications such as Pending, Confirmation etc. templates you may change the following code in easy-appointments/src/logic.php file.

    From:

    if(array_key_exists('email', $app_array)) {
    			wp_mail( $app_array['email'], 'Reservation #' . $app_id, $body );

    To:

    $headers = array('Content-Type: text/html; charset=UTF-8');
    		if(array_key_exists('email', $app_array)) {
    			wp_mail( $app_array['email'], 'Reservation #' . $app_id, $body, $headers );

    Regards,
    Nemanja

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Nikola Loncar

    (@loncar)

    Hi Nemanja,

    thanks for that note it’s deficiently needs to be there. I will put that header in new version of plugin.

    Best regards,
    Nikola

    Plugin Author Nikola Loncar

    (@loncar)

    Hi Nemanja,

    I have put that change in new version. Thanks

    Best regards,
    Nikola

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘HTML mail notifications’ is closed to new replies.