# Attachments
You may attach a file from memory or by a file path.
## From file path
```php
$mg->message()->send('example.com', [
'from' => '[email protected]',
'to' => '[email protected]',
'subject' => 'Test file path attachments',
'text' => 'Test',
'attachment' => [
['filePath'=>'/tmp/foo.jpg', 'filename'=>'test.jpg']
]
]);
```
## From memory
```php
// Some how load the file to memory
$binaryFile = '[Binary data]';
$mg->message()->send('example.com', [
'from' => '[email protected]',
'to' => '[email protected]',
'subject' => 'Test memory attachments',
'text' => 'Test',
'attachment' => [
['fileContent'=>$binaryFile, 'filename'=>'test.jpg']
]
]);
```
## Inline attachments
```php
$mg->message()->send('example.com', [
'from' => '[email protected]',
'to' => '[email protected]',
'subject' => 'Test inline attachments',
'text' => 'Test',
'inline' => [
['filePath'=>'/tmp/foo.jpg', 'filename'=>'test.jpg']
]
]);
```
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]