import config from "config";
import mail from "../index";
/**
 * Sends a verify email email
 * @param {string} to - the email address of the recipient
 * @param {string} username - the username of the recipient
 * @param {string} code - the email reset code of the recipient
 * @param {Function} cb - gets called when an error occurred or when the operation was successful
 */
export default (to, username, code, cb) => {
	const url = `${config.get("url.secure") ? "https" : "http"}://${config.get("url.host")}/backend`;
	const data = {
		to,
		subject: "Please verify your email",
		html: `
				Hello there ${username},
				
				
				To verify your email, please visit ${url}/auth/verify_email?code=${code}.
			`
	};
	mail.runJob("SEND_MAIL", { data })
		.then(() => cb())
		.catch(err => cb(err));
};