There are many ways of doing this, but in looking at the webpage in the Inspector, notice that the cells with the email addresses all have the class "col-md-4". You also run $() in the Inspector Console and notice that jQuery is available. So, you might try running the following jQuery command in the Inspector Console to see if this at least gets the right data:
$('.col-md-4')
Though the results look accurate, there's also a lot of unnecessary spacing and returns in the data (e.g., "/n"). So, you can ask an AI the following prompt:
find the text of all '.col-md-4' elements and return them as an array with the contents trimmed of white space and returns
ChatGPT returns the following:
const colMd4Elements = document.querySelectorAll('.col-md-4');
const trimmedTextArray = [];
colMd4Elements.forEach(element => {
const text = element.textContent.trim();
trimmedTextArray.push(text);
});
console.log(trimmedTextArray);
Run this in the Inspector Console, and you will get the following results:

This can then be copied into Outlook or elsewhere.