<modification>

	<id>Joseph Lazy E-mail Orders Greater than $499.99</id>
	<version>2.0.0</version>
	<vqmver>2.4.1</vqmver>
	<author>Exel</author>

	<file name="catalog/model/checkout/order.php">
		<operation info="wrap the original with the else" error="log">
            <search position="after"><![CDATA[
			$order_total = $result['text'];
            ]]></search>
            <add><![CDATA[
			$order_exel = $result['value'];
            ]]></add>
        </operation>

		<operation info="wrap the original with the else" error="log">
            <search position="before"><![CDATA[
			// Send to additional alert emails
            ]]></search>
            <add><![CDATA[
			//E: Check if total is greater than $499.99
			if($order_exel >= '499.99') {
				$mail->addAddress('rmills@madnessautoworks.com');
			}
            ]]></add>
        </operation>

	</file>

</modification>