Nou'll want to use quotes everywhere that I do. Only use brackets when you reference the fields in the Query at the top of the code.
Try this for your SendObject line (assuming the Report you want to attach is called "Drug Positives"):
Code:
DoCmd.SendObject acSendReport, "Drug Positives", "PDF", "name@company.com", "anothername@company.com", , "Dat Results FOR YOUR EYES ONLY", "The following SM has tested positive for . Please kick his ass out",,)
' DoCmd.SendObject acSendReport, "Drug Positives", "PDF", name@company.com; anothername@company.com", , , "Dat Results FOR YOUR EYES ONLY", "The following SM has tested positive for . Please kick his ass out",,)
Also, I'm assuming you want the second e-mail address to show up in the "Cc:" field of the e-mail instead of having them both show up in "To:". If you want both of them, use the commented out line instead.
As for doing the coding yourself, no problem! It's kinda refreshing to see someone that wants to learn to do it themselves rather than just have stuff handed to them 
P.S.
If you get an error about the file you're trying to attach, just remove the "PDF". When you run it, it'll ask you for the format: Write down what it calls the PDF document and use that exact string instead.