fileSystemRoot/lib/email/Email.inc");
if(checkSession()) {
// include the page template (with navbar)
require_once("$default->fileSystemRoot/presentation/webpageTemplate.inc");
// when email button sent..send email
if ($submit) {
//set up body and link
$hyperlink = $linkToBug;
$body = $message . "
This bug can be found on this page: " . "". $hyperlink ."";
//create email object
$emailLink= new Email();
//send email
$success = $emailLink->send($toEmail,$subject,$body);
//if successful ..rerender the page
if ($success) {
$Center = "
Email Successfully Sent";
$oPatternCustom = & new PatternCustom();
$oPatternCustom->setHtml($Center);
$main->setCentralPayload($oPatternCustom);
$main->render();
} else {
$Center = "
Email Unsuccessful";
$oPatternCustom = & new PatternCustom();
$oPatternCustom->setHtml($Center);
$main->setCentralPayload($oPatternCustom);
$main->render();
}
} else {
//create the necessary HTML for the emailing
$Center = "
| To Email: | |
| Your Name: | |
| Your Email: | |
| Subject: | |
| Link to Page: | |
| Bug Description: | |