Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sms not sent #75

Open
leksyking opened this issue Jun 14, 2022 · 0 comments
Open

sms not sent #75

leksyking opened this issue Jun 14, 2022 · 0 comments

Comments

@leksyking
Copy link

Setting the medium in Otp to sms generates the otp but does not send it unlike for email or perhaps I am missing something.

const createOtp = async (user)=>{
    try {
        const payload = {
            length: 5,
            customer:{
                name: user.firstName + " " + user.lastName,
                email: user.email,
                phone: "2347097211345"
            },
            sender: "omo iyami",
            send: true,
            medium: ["sms"],
            expiry: 5
        }
        const response = await flw.Otp.create(payload)
        return response;
       
    } catch (error) {
        throw new Error("Something went wrong, try again later.")
    }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant