Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Max K

    (@kaminskym)

    Hi,

    You cloud use filter

    "lrm/mails/registration/body"

    Example:

    add_filter("lrm/mails/registration/body", function($mail_body, $user_login, $userdata) {
      $mail_body = str_replace($user_login, $userdata['user_email'], $mail_body);
      return $mail_body;
    }, 10, 3);

    Regards, Max

    • This reply was modified 7 years, 9 months ago by Max K.
    Thread Starter CNEC Uberaba

    (@cnecuberaba)

    It worked here. Many thanks Max!

    Plugin Author Max K

    (@kaminskym)

    Ok, great

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Email instead of user’ is closed to new replies.