function subscribeToNewsletter(email) {
	if (!isValidEmail(email)) {
		return false;
	}

	return true;
}
