File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,8 @@ Use the ``attachFromPath()`` method to attach files that exist on your file syst
200
200
->attachFromPath('/path/to/documents/privacy.pdf', 'Privacy Policy')
201
201
// optionally you can provide an explicit MIME type (otherwise it's guessed)
202
202
->attachFromPath('/path/to/documents/contract.doc', 'Contract', 'application/msword')
203
- // you can also use an absolute url
203
+ // you can also use an absolute URL if your PHP config allows getting URLs using fopen()
204
+ // (this is not recommended because your application may or may not work depending on PHP config)
204
205
->attachFromPath('http://example.com/path/to/documents/contract.doc', 'Contract', 'application/msword')
205
206
;
206
207
You can’t perform that action at this time.
0 commit comments