Hi @Nick3333 , you're almost there with the logic.
In your Flow, rather than having multiple IFs, you could use a Switch statement.
Each leg of the switch would be the name of your sales rep and you could then insert the relevant email address.
E.g.
Case "Bob"
Set email address to "bob@xyz.com"
Case "Jane"
Set email address to "jane@xyz.com"
Case "Matt" etc
If you're sending a simliar email to each person, then if you're not doing it already you could "Initialize a variable" before the Switch control called email address. In your switch statement you "Set variable" to the relevant email address. Then after the Switch control, have your "Send an email" action, and use your email address variable as the To address. This way you only generate the email once, and you dynamically select the To address.