• This works wonders, to notify customers about their orders through Telegram, thank you.

    Is there a way to notify them without using wp_mail hook? So I don’t need to email them aswell?

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Pagecode

    (@pagecode)

    I mean like a hook instead of using wp_mail or a way to disable it with certain wp_mail hooks, or is that not possible.

    Plugin Author Irshad Ahmad

    (@irshadahmad21)

    There is a little tiny filter to do the job. After you call wp_mail, just add this line after that to avoid sending the email if Telegram notification has been sent.

    add_filter(?'wptelegram_notify_abort_email', '__return_true' );

    Plugin Author Irshad Ahmad

    (@irshadahmad21)

    Also, the pro version supports instant messages to your users without sending any email at all.

    Thread Starter Pagecode

    (@pagecode)

    Thank you for that information, I really appreciate it!

    Thread Starter Pagecode

    (@pagecode)

    Ok great, thanks for letting me know about the PRO capability, awesome

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Reliable way of notifying customers’ is closed to new replies.