Hey Miguel!
This is possible, but it can be a bit of a pain depending on the amount of potential previous owners.
If you look at a Marketo record, you'll see your lookup field populated with the looked-up user's Salesforce ID. Your first temptation may be to create a formula field that converts those IDs to human-readable values, but it turns out you can't send batch emails with Marketo formula fields as the address. Learn from my pain. ;(
What you CAN do, however, is write a email script token to handle this! What you'll be looking for is to do something like
#if (${lead.previousOwner} == "005o0000001ArgZ")
john.smith@example.com
#elseif ({lead.previousOwner} == "005o0000001ArgY")
kenichi.honda@example.com
#elseif ({lead.previousOwner} == "005o0000001ArgX")
jane.graham@example.com
#else
default.email@example.com
#end
You would need to make one of these for the email address itself as well as the previous owner's real name, and obviously you're going to need the real API name of Previous Owner and your users' values (which you can get from your SFDC administrator if necessary), but that's the basic gist of it.