Open adnanoner opened 10 years ago
Hi,
I'm using a (bit of a hacky) plugin that overwrites the default wp_mail functionality with
apply_filters( 'wp_mail', compact( 'to', 'subject', 'message', 'headers', 'attachments' ) );
However, since postmark also rewrites wp_mail, the (hacky) plugin is unable to rewrite the wp_mail functionality. Does anyone have an idea on how to fix this?
I've just implemented it myself using the API, way easier :).
Hi,
I'm using a (bit of a hacky) plugin that overwrites the default wp_mail functionality with
apply_filters( 'wp_mail', compact( 'to', 'subject', 'message', 'headers', 'attachments' ) );
However, since postmark also rewrites wp_mail, the (hacky) plugin is unable to rewrite the wp_mail functionality. Does anyone have an idea on how to fix this?