Get the entire response as a string
string
public function getMessage() {
$message = $this
->getRawHeaders();
// Only include the body in the message if the size is < 2MB
$size = $this->body
->getSize();
if ($size < 2097152) {
$message .= (string) $this->body;
}
return $message;
}