-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.php
106 lines (89 loc) · 2.61 KB
/
api.php
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
<?php
/**
* Priceless PHP
* e-mail API
*
* @author BizLogic <[email protected]>
* @copyright 2015 BizLogic
* @link http://bizlogicdev.com
* @link http://pricelessphp.com
* @license GNU Affero General Public License v3
*
* @since Thursday, May 28, 2015, 14:24 GMT+1
* @modified $Date$ $Author$
* @version $Id$
*
* @category API
* @package Priceless PHP e-mail API
*/
error_reporting( E_ALL );
ini_set( 'display_errors', false );
// header
header( 'Content-Type: application/json; charset=utf-8' );
// constants
define( 'API_KEY', 'YOUR_API_KEY_HERE' );
if( empty( $_POST ) ) {
$error = array(
'status' => 'ERROR',
'error' => 'Invalid Request',
);
exit( json_encode( $error ) );
} else {
$required = array(
'apiKey',
'mailFrom',
'mailTo',
'mailReplyTo',
'mailSubject',
'mailText',
);
// error placeholder
$error = array();
// START: Check required values
foreach( $required AS $key => $value ) {
if( !strlen( trim( $value ) ) ) {
$error[] = $value.' not specified';
}
}
if( !empty( $error ) ) {
$response = array(
'status' => 'ERROR',
'error' => $error,
);
exit( json_encode( $response ) );
}
// END: Check required values
if( $_POST['apiKey'] != API_KEY ) {
$error = array(
'status' => 'ERROR',
'error' => 'Invalid API Key',
);
exit( json_encode( $error ) );
} else {
$from = $_POST['mailFrom'];
$message = $_POST['mailText'];
$replyTo = $_POST['mailReplyTo'];
$subject = $_POST['mailSubject'];
$to = $_POST['mailTo'];
// the e-mail message
$message = $_POST['mailText'];
// the e-mail mail headers
$headers = "From: ".$from."\r\n";
$headers .= "Reply-To: ".$mailReplyTo."\r\n";
$headers .= "X-Mailer: PHP/" . phpversion();
// send the email
$result = (int)mail( $to, $subject, $message, $headers );
if( $result == 1 ) {
$response = array(
'status' => 'OK',
);
exit( json_encode( $response ) );
} else {
$response = array(
'status' => 'ERROR',
'error' => 'e-mail not sent',
);
exit( json_encode( $response ) );
}
}
}