Hi,
Yes!
You use a PlainTemplate and attach it by using the new "null" filter.
Once you have the PlainTemplate working (check out the how-to guides), you can attach it instead of have it in the body of the email with the following hidden fields:
Code:
<input type="hidden" name="filter" value="null" />
<input type="hidden" name="filter_options" value="Attach=data.csv" />
When you upgrade you may need to manually re-create the "null" filter because the Upgrade Wizard will simply replace the new $FILTERS with the old $FILTERS:
PHP Code:
$FILTERS = array("encode"=>"$REAL_DOCUMENT_ROOT/cgi-bin/fmencoder -kpubkey.txt",
"null"=>"null");
Bookmarks