<?php

$regexp = "#from\s(.+?)\s(.+)#";

$data = "from sender.domainemail.net (this is comment) (this is another comment) (last comment)"; 

$matches = [];

preg_match($regexp, $data, $matches);

var_dump($matches);