<?php

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

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

$matches = preg_split($regexp, $data, -1, PREG_SPLIT_DELIM_CAPTURE|PREG_SPLIT_NO_EMPTY);

var_dump($matches);