Garbled text from context.http.get as source of AWS SES emails

Workaround

const emailHtml = await context.http.get({
    url: 'https://www.typographicposters.com/newsletters/atlas-test'
    // created this new URL with only that thank you note
})
 
  const body = emailHtml.body.text();
  var Buffer = require('buffer').Buffer;
  var str = Buffer.from(body, 'binary').toString();