• I work with Elementor Pro, and could use any advice about creating a welcome email (perhaps connecting Elementor with Mailchimp) like this one: https://i.imgur.com/bmqpdkM.png
    Do you know any good tutorial? I do not mean what a welcome email should contain, but how to design it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • //you have to add this filter to add html contents on mail body in function.php

    add_filter( ‘wp_mail_content_type’ , ‘set_html_content_type’ );
    function set_html_content_type() {
    return ‘text/html’;
    }

    then design and send your mail from where you want to send
    e.g
    $email_body=”<h1>welcome</h1><p>hello</p>”; //add your html code to design
    wp_mail($mailSendTo, ‘subject’,$email_body);

    You can clarify all your doubts in creating a welcome email in this link https://bit.ly/316PGtS

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to create a welcome email?’ is closed to new replies.