Viewing 1 replies (of 1 total)
  • Adam

    (@kbil4eva)

    If you run this in phpMyAdmin then you can export as you wish…

    SELECT * FROM wp_posts WHERE post_type = 'postman_sent_mail' ORDER BY ID DESC

    You can also modify this to show submissions for a specific email by changing “post_title” to match the email subject of that email, for example…

    SELECT * FROM wp_posts WHERE post_title = 'Website Contact' AND post_type = 'postman_sent_mail' ORDER BY ID DESC

    In the above you would change “Website Contact” to the subject of your email.

Viewing 1 replies (of 1 total)

The topic ‘Export Postman SMTP Email Log’ is closed to new replies.