this is tricky to explain:
I have a raw php script, written by someone else, that sends an email to a list extracted from a CSV file. It requires that certain values in the file be manually edited each time it's used, such as the following:
$mail->setFrom('email@email.com', 'From Name'); // <==== change email address, From Name
$subject = "Subject Line"; // <==== Adjust this subject
$html = ' html here '; // <==== include email html
MagicParser_parse("test.csv","myRecordHandler","csv|44|1|34"); // <==== change 'test.csv' file name
the function is c