react-code-dataset / wp-calypso /client /landing /stepper /hooks /use-send-email-verification.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import wpcom from 'calypso/lib/wp';
export interface ResendEmailVerificationBody {
from?: string; // Helps decide the url of the page after confirmation.
}
export function useSendEmailVerification( body: ResendEmailVerificationBody = {} ) {
return async () => {
return wpcom.req.post( '/me/send-verification-email', {
apiVersion: '1.1',
...body,
} );
};
}