Edite the mail addresses as required , create the php file with this content below
<?php
$contacts = array(
"info@yourdomain.com.au",
"info@anotherdomain.com",
//....as many email address as you need
);
foreach($contacts as $contact) {
$to = $contact;
$subject = 'Stripe Event';
$message = 'hello there has been an event notice on your stripe account';
$headers = 'From: notifications@whomeveryouwish.com.au' . "\r\n" .
'Reply-To: webmaster@whocares.com.au' . "\r\n" .
mail($to, $subject, $message, $headers);
}
?>