<?php
include_once('dealerEmail.php');
if($dealerInfo[$info['dealer']]['eventID'] != "")
{
$_GET['promo'] = $dealerInfo[$info['dealer']]['campaign'];
$_GET['eventID'] = $dealerInfo[$info['dealer']]['eventID'];
$_GET['source'] = 'web';
$_GET['lastName'] = $info['customer']['lastname'];
$_GET['firstName'] = $info['customer']['firstname'];
$_GET['mainPhone'] = $info['customer']['mainPhone'];
$_GET['email'] = $info['customer']['email'];
$_GET['postalCode'] = $info['customer']['postalCode'];
$_GET['currentVehicleModel'] = $info['tradeIn']['model'];
include_once('../misc/rsvp.php');
}
?>