def send_otp_to_customer(user, password):
    f = check_indentity(user, password)
    if f != 1:
        return -99
    m = Mail()
    return m.send_otp_mail(user)