I want to set to checked a checkbox input by value AND name..
How
Just use both selectors next to each other:
$("input[name=email][value=" + i + "]").prop('checked', true);
Any selectors that have no space between them are applied to the same element.