yopmail-helper
Version:
yopmail helper. It will help you receive the mail content.
13 lines (10 loc) • 336 B
JavaScript
function getMailDetailsUrl(id, mailAddress) {
return `https://yopmail.com/mail?b=${mailAddress}&id=m${id}`;
}
function getInboxUrl(mailAddress, yp, yj, ver) {
return `https://yopmail.com/inbox?login=${mailAddress}&p=1&d=&ctrl=&yp=${yp}&yj=${yj}&v=${ver}&r_c=&id=&ad=0`;
}
module.exports = {
getMailDetailsUrl,
getInboxUrl,
};