summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/example.php9
1 files changed, 3 insertions, 6 deletions
diff --git a/examples/example.php b/examples/example.php
index 05f0a9a..05fe5eb 100644
--- a/examples/example.php
+++ b/examples/example.php
@@ -1,11 +1,8 @@
<?php
include(dirname(__DIR__).'/php_http_client/client.php');
-
-$myfile = fopen(dirname(__DIR__).'/.env', "r");
-$env = fgets($myfile);
-$env = explode('=', $env);
-$api_key = $env[1];
-$api_key = trim(preg_replace('/\s+/', ' ', $api_key));
+include(dirname(__DIR__).'/php_http_client/config.php');
+$config = new Config(dirname(__DIR__), '.env');
+$api_key = getenv('SENDGRID_API_KEY');
$headers = array(
'Content-Type: application/json',
'Authorization: Bearer '.$api_key