Here is what I have:
PRINT #4 "<EMAIL email1@example.com>"
PRINT #4 "SENDER: myemail@example.com"
PRINT #4 "SUBJECT: Email"
PRINT #4 "Body"
PRINT #4 "</>"
PRINT #4 "<EMAIL email2@example.com>"
PRINT #4 "SENDER: myemail@example.com"
PRINT #4 "SUBJECT: Email"
PRINT #4 "Body"
PRINT #4 "</>"
I would rather not do all of that twice, but if I have to, I can deal with it. The problem is that only email1 is receiving the email. I flipped their order, and the first email is the only one that goes through. What am I doing wrong?