I wish to split a long list of email address into lines, such as:
test01@testing.com; test02@testing.com; test03#testing1.com; test04@testing2.com,
I wish to split them into lines:
test01@testing.com (carriage return)
test02@testing.com (carriage return)
test03#testing1.com (carriage return)
test04@testing2.com
Can anyone pls help? Thanks.