• Resolved bhenselmann

    (@bhenselmann)


    We are using EM to create events by anonymous users. When such an event is approved by us, the creator of the event gets an notification email to the #_CONTACTEMAIL.
    I want to send a copy of this notivication automatically to an other (fixed) email address.
    How could I realize that?
    Thanks for help and hints!
    Bernhard

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    sorry but at the moment this is not yet available out of the box and might need custom coding on your part to make this work.

    Thread Starter bhenselmann

    (@bhenselmann)

    Thanks for this fast reply!
    Coding is ok. I can do some php – not like a expert, but it might be sufficent.
    Can you give me a hint how to tackle this?

    Hello,

    Currently We’re very limited in terms of custom coding. These short snippet may help you get started.

    function theme_em_email_add_bcc( PHPMailer $mail ) {
    	$mail->AddBCC( '[email protected]' );
    	return $mail;	
    }
    add_action('em_mailer', 'theme_em_email_add_bcc', 10, 1);
    • This reply was modified 5 years, 11 months ago by timrv.

    I actually shared this snippet on the Pro Forum. “Thanks” for mentioning that, @timrv .

    Yet, this is NOT what the OP requested! This snippet will add a BCC, not CC to EVERY email sent by Events Manager. Not “just” the event submission confirmation.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘send notification email cc to another email address’ is closed to new replies.