Hallo forummers!
Ik ben al een tijdje beetje met PHP maar nog wel onervaren en gebruik voor mijn werk het administratie programma PHPBMS. Het is een eenvoudig systeem om aan te passen.
Er is een functie om een medewerker per mail op de hoogte stellen van een aangemaakte event. Bij deze mail wil ik een ics bestand als bijlage toevoegen zodat de medewerker zelf deze in zijn eigen agenda kan plaatsen.
Ik heb gekeken bij andere scripts, het bestaat wel maar ik kom er niet uit. Ook wel logisch want het vrij ingewikkeld voor een niet pro :) Kan iemand me wat tips geven?
Het huidige bestand nu: (notes_ajax.php)
<?php
/*
$Rev: 703 $ | $LastChangedBy: brieb $
$LastChangedDate: 2010-01-01 17:34:45 -0700 (Fri, 01 Jan 2010) $
+-------------------------------------------------------------------------+
| Copyright (c) 2004 - 2010, Kreotek LLC |
| All rights reserved. |
+-------------------------------------------------------------------------+
| |
| Redistribution and use in source and binary forms, with or without |
| modification, are permitted provided that the following conditions are |
| met: |
| |
| - Redistributions of source code must retain the above copyright |
| notice, this list of conditions and the following disclaimer. |
| |
| - Redistributions in binary form must reproduce the above copyright |
| notice, this list of conditions and the following disclaimer in the |
| documentation and/or other materials provided with the distribution. |
| |
| - Neither the name of Kreotek LLC nor the names of its contributore may |
| be used to endorse or promote products derived from this software |
| without specific prior written permission. |
| |
| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| |
+-------------------------------------------------------------------------+
*/
require_once("../../include/session.php");
//Thijmens ICS mail class inlude
require_once("include/ics_class.php");
//Bestand gegevens poging
$fileatt = ".$event->save()."; // Path to the file
$fileatt_type = "application/octet-stream"; // File Type
$fileatt_name = ".$event->save()."; // Filename that will be used for the file as the attachment
$file = fopen($fileatt,'rb');
$data = fread($file,filesize($fileatt));
fclose($file);
$headers .= "\nMIME-Version: 1.0\n" .
"Content-Type: multipart/mixed;\n" .
" boundary=\"{$mime_boundary}\"";
//Event ICS maken
$event = new ICS('.$therecord["startdate"].','.$therecord["enddate"].','.$therecord["subject"].','.$therecord["content"].','GU1 1AA');
//Het show van event .$event->save()
//Oorspronkelijke PHPbms script
function sendNoticeEmail($db, $noteid) {
$querystatement="
SELECT
subject,
assignedtoid,
assignedbyid,
content,
type,
assignedtodate,
assignedtotime,
startdate,
starttime,
enddate,
endtime
FROM
notes
WHERE
id=".((int) $noteid);
$queryresult = $db->query($querystatement);
$therecord = $db->fetchArray($queryresult);
$querystatement = "
SELECT
firstname,
lastname,
email
FROM
users
WHERE
uuid='".$therecord["assignedtoid"]."'";
$queryresult=$db->query($querystatement);
$torecord=$db->fetchArray($queryresult);
if($torecord["email"]=="")
return "Assignee has no e-mail address set.";
$querystatement = "
SELECT
firstname,
lastname,
email
FROM
users
WHERE uuid = '".$therecord["assignedbyid"]."'";
$queryresult=$db->query($querystatement);
$fromrecord=$db->fetchArray($queryresult);
if($fromrecord["email"]=="")
return "You have no e-mail address set.";
$from="".trim($fromrecord["firstname"]." ".$fromrecord["lastname"])." <".$fromrecord["email"].">";
$subject=APPLICATION_NAME." Planning: ".$therecord["subject"];
switch($therecord["type"]){
case "NT":
$therecord["type"]="note";
break;
case "TS":
$therecord["type"]="task";
break;
case "EV":
$therecord["type"]="event";
break;
case "SY":
$therecord["type"]="system message";
break;
}
if($_SERVER["SERVER_PORT"] == 443)
$protocol = "https";
else
$protocol = "http";
$themessage= "Je bent ingepland voor ten ".$therecord["type"]." dat in het pakbon systeem staat. Log in via ".$protocol."://".$_SERVER["HTTP_HOST"].APP_PATH." om deze te bekijken\n\n";
$themessage.="Titel: ".$therecord["subject"]."\n\n";
if($therecord["assignedtodate"]) {
$themessage.="Aanwezig op de zaak: ".$therecord["assignedtodate"];
if($therecord["assignedtotime"])
$themessage.=" ".$therecord["assignedtotime"];
$themessage.="\n\n";
}
if($therecord["type"]=="task"){
if($therecord["startdate"]){
$themessage.="Begin event: ".$therecord["startdate"];
if($therecord["starttime"])
$themessage.=" ".$therecord["starttime"];
$themessage.="\n";
}
if($therecord["enddate"]){
$themessage.="Einde event: ".$therecord["enddate"];
if($therecord["endtime"])
$themessage.=" ".$therecord["endtime"];
$themessage.="\n";
}
$themessage.="\n";
}
if($therecord["type"]=="event"){
$themessage.="Begin datum: ".$therecord["startdate"];
if($therecord["starttime"])
$themessage.=" ".$therecord["starttime"];
$themessage.="\n";
$themessage.="Eind datum: ".$therecord["enddate"];
if($therecord["endtime"])
$themessage.=" ".$therecord["endtime"];
$themessage.="\n\n";
}
$themessage.="Informatie: \n".$therecord["content"]."\n\n" .
$data . "\n\n" .
"--{$mime_boundary}--\n";
$data = chunk_split(base64_encode($data));
//$Themessage iets aangepast en $data toegevoegd. Tot nu toe geen resultaat.
if(! @ mail($torecord["email"],$subject,$themessage,"From: ".$from))
return "Error Processing E-Mail.";
return "E-Mail verzonden naar medewerker.";
}//end function
//=================================================================================================
if(isset($_GET["cm"])){
$thereturn="";
switch($_GET["cm"]){
case "sendemail":
$thereturn=sendNoticeEmail($db,$_GET["id"]);
break;
}
echo $thereturn;
}
?>
2.873 views