ICS maken en meesturen met mail

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Thijmen van Doorn

Thijmen van Doorn

13/11/2012 13:09:25
Quote Anchor link
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)

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?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;
    }

?>
 
PHP hulp

PHP hulp

29/03/2024 14:25:56
 
Marco PHPJunky

Marco PHPJunky

13/11/2012 13:53:31
Quote Anchor link
afgezien dat er een aantal fouten inzitten en een hoop dingen mis.
- controles op invoer
- gebruik geen @
- variabele buiten quotes
- goede/correcte foutafhandeling

Je kan een attachment toevoegen aan de mail of gebruik maken van een PHP mailer class (bv. phpmailer)

Maar daarnaast om wat voor agenda gaat het ? (intern/extern)
Zit er een persoonlijke agenda in het programma ?
 
Thijmen van Doorn

Thijmen van Doorn

13/11/2012 14:16:59
Quote Anchor link
Medewerkers krijgen een mail als ze ingepland staan in het systeem. De ICS als bijlage moest ervoor zorgen dat ze het in hun eigen Google Agenda konden zetten.
 
Marco PHPJunky

Marco PHPJunky

13/11/2012 14:28:57
Quote Anchor link
als je enkel en alleen google calander betreft kan je toch net zo goed je applicatie iets verder uitbouwen met de google calander api zodat je het gelijk in de agenda zet zodat het automatische gesynchroniseerd word en erin gezet word.

dan kan je daarnaast eventueel een mailtje sturen dat er iets nieuws in staat zodat ze moeten gaan kijken.

Leesvoer:
Info Calander API v3
API info lijst
 



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.