Trouble adding tags on mandrill payload function
-
I feel like I’m going crazy here with this basic function I want to fire on mandrill_payload to add some tags to my emails.
Here is my code:
function dpg_mandrill_tag($message){ $message['tags'] = 'frankdougdog'; return $message; } add_filter('mandrill_payload', 'dpg_mandrill_tag');
When I send using that code, NO tags show up, let alone the one I tried to add there. I tried diving into the wpmandrill core php files to get a better understanding, but I am at a loss for why the tag won’t pass along. Help anyone?!
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Trouble adding tags on mandrill payload function’ is closed to new replies.