-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathREADME
35 lines (30 loc) · 1.02 KB
/
README
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
Installation
============
Just drop the folder "App" inside the library folder of Zend Framework
Requirements
============
* You must have an active account on Amazon AWS
* You must have an active subscription with Amazon Simple Email Service (SES)
Usage
======
The use is very simple (notice that the adapter supports attachments),we have just to tell zend_mail to use our new transport like this:
$mail = new Zend_Mail('utf-8');
$transport = new App_Mail_Transport_AmazonSES(
array(
'accessKey' => 'YOUR_AWS_ACCESS_KEY',
'privateKey' => 'YOUR_AWS_PRIVATE_KEY'
)
);
$mail->setBodyText('Lorem Ipsum Dolo Sit Amet');
$mail->setBodyHtml('Lorem Ipsum Dolo <b>Sit Amet</b>');
$mail->setFrom('[email protected]', 'John Doe');
$mail->addTo('[email protected]');
$mail->setSubject('Test email from Amazon SES with attachments');
$mail->createAttachment(
file_get_contents('example.css'),
'text/css',
Zend_Mime::DISPOSITION_INLINE,
Zend_Mime::ENCODING_BASE64,
'example.css'
);
$mail->send($transport);