Currently, sending test notification emails does not work when there are multiple recipients.
The string containing multiple recipients is not split into a list of recipients.
This PR fixes this.
It uses the same logic (splitting on any of , (comma), ; (semicolon), | (pipe), or ` (space) ) as themain` function of sendmail.py.
Currently, sending test notification emails does not work when there are multiple recipients. The string containing multiple recipients is not split into a list of recipients. This PR fixes this. It uses the same logic (splitting on any of
,
(comma),;
(semicolon),|
(pipe), or` (space) ) as the
main` function of sendmail.py.