import axios from 'axios'; const API_URL = 'https://yourapi.com/api/email'; const generateOtp = () => Math.floor(100000 + Math.random() * 900000); export const sendOtp = async (email) => { const otp = generateOtp(); await axios.post(`${API_URL}/send-otp`, { email, otp }); localStorage.setItem('otp', otp); }; export const verifyOtp = (enteredOtp) => { const savedOtp = localStorage.getItem('otp'); return enteredOtp === savedOtp; }; export const sendInvoice = async (cart) => { await axios.post(`${API_URL}/send-invoice`, { cart }); }; export default { sendOtp, verifyOtp, sendInvoice, };