I'm trying to just simply add a custom email note. I'm not able to follow the api , i'm not even sure its possible without creating a template.
I've tried something like this.
var addthis_share = { email_vars: { note: 'test' } }
To set a specific note, use the ui_email_note property of the addthis_config variable, like this:
<script type="text/javascript">
if (typeof addthis_config !== "undefined") {
addthis_config.ui_email_note = 'Custom note'
} else {
var addthis_config = {
ui_email_note: 'Custom note'
};
}
</script>
This question is closed to new answers.