I guess I will have to find something harder to throw at you guys, because you all made this too easy. I really do appreciate it. For those of you out there with a similar problem (who are dummies like me), here is what I did. Now I am not saying this is 100% correct, but everything is working at this time.
In the file, /assets/snippets/webloginpe/webloginpe.class.php , look for "new PHPMailer();". I believe it is in there 5 times. In fact, here are the 5 ways it appears. I figured I should modify all of them, but I could be wrong. Now if you are having this issue, then you definitely are having the same issue with eForm. Follow the link I posted above, because the solution is slightly different.
$Reset = new PHPMailer();
$Register = new PHPMailer();
$Notify = new PHPMailer();
$Pruned = new PHPMailer();
$EmailMessage = new PHPMailer();
All I did was add two lines bellow every instance of "new PHPMailer();", like below. If you require authentication, this is also where you would add that info (I think).
$Reset = new PHPMailer();
$Reset->IsSMTP();
$Reset->Host = 'smtp.domain.com';
Thanks for all the help everyone.