So I was able to hack it by putting an email in the paypal plugin php file to temporarily get emails going to my client!
Please feel free to adjust as necessary!
if you need help contact me patrick@pmxli.com to help solve this issue with you
PMX 4EVA
pmxcomputing.com
********************************************
/plugins/vmpayment/paypal/paypal.php file at line 263
********************************************
//begin PMX MODZ below
$mailer = JFactory::getMailer();
$config = JFactory::getConfig();
$sender = array(
$config->getValue( 'config.mailfrom' ),
$config->getValue( 'config.fromname' ) );
$mailer->setSender($sender);
$recipient = 'your@email.com'; //for admins & store owner
$mailer->addRecipient($recipient);
$body ='
<table style="border: 1px solid lightgrey; margin: 5px; padding: 5px; width:
100%;" align="center" border="0" cellpadding="1" cellspacing="1">
<tbody>
<tr>
<td>
<p><table width="100%" align="center" border="0" cellspacing="0"
cellpadding="10">
<tr valign="top">
<td align="left" class="Stil1">Your Website title</td>
<td align="right"><img border="0"
src="
http://www.yourwbsite.com/logo.png"></td>
</tr>
</table></p>
<p> </p>
<table style="width: 100%;" border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr class="sectiontableheader" bgcolor="#cccccc">
<td class="Stil2" colspan="2"><strong>Order Information</strong></td>
</tr>
<tr class="Stil1">
<td>Order Number:</td>
<td>'.$post_variables['order_number'].'</td>
</tr>
<tr class="Stil1">
<td>Order Date:</td>
<td>'.date('m-d-Y').'</td>
</tr>
<tr class="Stil1">
<td>Order Status:</td>
<td>Pending</td>
</tr>
<tr class="sectiontableheader">
<td colspan="2"> </td>
</tr>
<tr class="sectiontableheader" bgcolor="#cccccc">
<td colspan="2"><strong class="Stil2">Customer Information</strong></td>
</tr>
<tr>
<td colspan="2">
<table class="html-email" cellspacing="0" cellpadding="0" border="0"
width="100%">
<tr>
<th width="50%">
Bill To Information </th>
<th width="50%" >
</th>
</tr>
<tr>
<td valign="top" width="50%">
<span>'.$post_variables['email'].'</span><br><span></span><br><span></span><br><span>'.$post_variables['first_name'].'</span> <span>'.$post_variables['last_name'].'</span><br><span>'.$post_variables['address1'].'</span><br><span>'.$post_variables['city'].'</span>, <span>'.$post_variables['state'].'</span> <br><span>'.$post_variables['zip'].'</span><br><br><span>Phone: '.$post_variables['night_phone_b'].'</span>
</td>
<td valign="top" width="50%">Shipping address will be on the follwoing invoice when the status is changed to confirmed.
</td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr class="Stil2" bgcolor="#cccccc">
<td colspan="2"><strong>Order Items</strong></td>
</tr>
<tr>
<td colspan="2"><table cellspacing="0" cellpadding="0" border="0"
width="100%" style="">
<tr align="left" >
<th style=""> </th>
<th style="" align="left" ></th>
<th style="" align="left" ></th>
<th style="" align="left" ></th>
<th style="" align="right" ></th>
<th style="" align="right" ></th>
<th style="" align="right" ></th>
<th style="" align="right" >Total Amount Due</th>
</tr>
<tr valign="top">
<td><a
href=""></a></td> <td align="left" >
</td>
<td align="left" >
</td>
<td align="left" >
<div><div class="vm-customfield-cart"> <span
class="product-field-type-V"></span><br /></div></div>
</td>
<td align="right" >
</td>
<td align="right"><span></span></td>
<td align="right" >
</td>
<td align="right" >
'.$post_variables['amount'].' </td>
</tr>
<tr>
<td colspan="8"><hr style=" border-top: 1px; height:1px; color:#444"></td>
</tr>
<tr>
<td colspan="5" align="right"></td>
<td align="right"><span ></span></td>
<td align="right"><span></span></td>
<td align="right"></td>
</tr>
<tr>
<td align="right" colspan="5"></td>
<td align="right"></td>
<td align="right"> </td>
<td align="right"></td>
</tr>
<tr>
<td align="right" colspan="5"></td>
<td align="right"></td>
<td align="right"> </td>
<td align="right"></td>
</tr>
<tr>
<td align="right" colspan="5"><strong></strong></td>
<td align="right"><span ></span></td>
<td align="right"> </td>
<td align="right"><strong></strong></td>
</tr>
</table>
</td>
</tr>
<tr class="sectiontableheader">
<td colspan="2"> </td>
</tr>
<tr class="sectiontableheader" bgcolor="#cccccc">
<td colspan="2"><strong class="Stil2"></strong></td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
<tr class="sectiontableheader">
<td colspan="2"> </td>
</tr>
<tr class="sectiontableheader" bgcolor="#cccccc">
<td><strong class="Stil2"></strong></td>
<td><strong class="Stil2"></strong></td>
</tr>
<tr>
<td><span class="vmpayment_name">Paypal</span></td>
<td><span class="vmshipment_name">UPS</span></td>
</tr>
</tbody>
</table>
<p></p>
<p>Sincerely,</p>
<p>Slant/Fin | High Efficiency Boilers and Baseboard</p>
<p>
http://www.slantfin.com/</p>
<p>orders@slantfin.com</p>
</td>
</tr>
</tbody>
</table>
';
$mailer->setSubject('New website order');
$mailer->isHTML(true);
$mailer->Encoding = 'base64';
$mailer->setBody($body);
$send = $mailer->Send();
if ( $send !== true ) {
echo 'Error sending email: ' . $send->message;
} else {
echo 'Mail sent';
}
//endPMX Modz