-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathBasicWithAttachment.php
More file actions
27 lines (21 loc) · 955 Bytes
/
BasicWithAttachment.php
File metadata and controls
27 lines (21 loc) · 955 Bytes
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
<?php
include_once (__DIR__ . "../../includes.php");
use Socketlabs\Message\BasicMessage;
use Socketlabs\Message\EmailAddress;
use Socketlabs\SocketLabsClient;
$client = new SocketLabsClient(exampleConfig::serverId(), exampleConfig::password());
//Build the message
$message = new BasicMessage();
$message->subject = "Sending A Test Message";
$message->htmlBody = "<html>This is the Html Body of my message.</html>";
$message->plainTextBody = "This is the Plain Text Body of my message.";
$message->from = new EmailAddress("from@example.com");
$message->addToAddress(new EmailAddress("recipient1@example.com", "Recipient #1"));
//Add attachment (with optional headers if desired)
$att = \Socketlabs\Message\Attachment::createFromPath( __DIR__ . "/../Img/Bus.png", "Bus.png", "IMAGE/PNG", "Bus");
$att->customHeaders = array(
"Color" => "Orange",
"Place" => "Beach",
);
$message->attachments[] = $att;
$response = $client->send($message);