Problems in role_attribute_path with several emails

Im having problems with the email part, idk how can i use several emails in there
auth.google:
enabled: true
client_id: ${CLIENT_ID}
client_secret: ${CLIENT_SECRET}
allowed_domains: “domain1 domain2”
allow_sign_up: true
role_attribute_path: “(email == ‘user1@domain1’ || email == ‘user2@domain1’ || email == ‘user3@domain2’) && ‘Admin’ || ‘Editor’”

I want that if you login with user 1, 2 or 3 you get Admin, if not, you get Edit, it works with only one email

role_attribute_path: “email == ‘user1@domain1’ && ‘Admin’ || ‘Editor’”