hi,
how can i send an email with 2 or 3 attachments? i used $_variable->attachFile('path') for 1 attachment. but more?
best regards
dh
This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
hi,
how can i send an email with 2 or 3 attachments? i used $_variable->attachFile('path') for 1 attachment. but more?
best regards
dh
You can call attachFile() many times.
$email->attachFile('1');
$email->attachFile('2');
oO ok, it's work ;)