JWardee
Forum Replies Created
-
Forum: Plugins
In reply to: [Mail logging - WP Mail Catcher] DDOS’ing Site?How many emails are you displaying in the table? My assumption is that you’ve set it to something like a couple of hundred and it’s generating the preview for each one when you load the page rather than lazy loading them.
Let me know and I can investigate further.
Forum: Plugins
In reply to: [Mail logging - WP Mail Catcher] Edit Sender/From?In your theme’s functions.php file you can add this code snippet at the bottom. Just change the values to what you’d like. I’m afraid I won’t be able to help you beyond this so if you’re still struggling I’d recommend grabbing a developer!
add_filter('wp_mail_from', function($email) { return 'webmaster@mydomainname.com'; }); add_filter('wp_mail_from_name', function($name) { return 'WordPress Email System'; });Here is the documentation for each filter:
https://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_from_name
https://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_fromForum: Plugins
In reply to: [Mail logging - WP Mail Catcher] Edit Sender/From?Hi Brian,
Glad you like the plugin! Do you mean you sent an email with a custom ‘from’ header and upon resending it, it reverted back to “WordPress”? If, however you’re asking to set the default ‘from’ heading you can do it by using the
wp_mail_fromandwp_mail_from_namefilters that WordPress already provides.Hope that helps!
Hey Sina,
Just wanted to let you know that this has been fixed in the 1.3.9 release which you can download now.
Thanks!
Hi Sina,
Thanks for the report, I’ve looked into this and you’re right. I’ve noted this down in Github, the fix is done and will be deployed in the next update.
https://github.com/JWardee/wp-mail-catcher/issues/88
Cheers!
Forum: Plugins
In reply to: [Mail logging - WP Mail Catcher] ChangelogFYI this has now been added. Any questions let me know.
Hi Sina,
Version 1.3.8 has been released which fixes this issue – thanks for reporting it!
Hey Sina,
Thank you for the report, I’ve logged this issue in our Github tracker: https://github.com/JWardee/wp-mail-catcher/issues/87
I’ll need to confirm the issue first, if I can replicate it I’ll issue a fix in the next patch. If you would like to add any additional info then please do so on the Github issue.
Cheers!
Forum: Plugins
In reply to: [Mail logging - WP Mail Catcher] Question about how this plugin worksThe plugin does not interfere or stop emails being sent. It simply saves a copy once the ‘wp_mail’ action is triggered by this point the email is already sent. If you’re interested here is the code that registers the action: https://github.com/JWardee/wp-mail-catcher/blob/master/src/Loggers/Logger.php#L19
Cheers!
Forum: Plugins
In reply to: [Mail logging - WP Mail Catcher] ChangelogIn case you’re interested in following this up I’ve added it to out Github tracker https://github.com/JWardee/wp-mail-catcher/issues/85
Forum: Plugins
In reply to: [Mail logging - WP Mail Catcher] ChangelogGreat idea. Will look into adding this for the next update!
Forum: Plugins
In reply to: [Mail logging - WP Mail Catcher] Add button to see pure HTML of emailHey @mrab231a, just wanted to let you know that I’ve just released v1.3.7 which includes the ability to see the raw HTML code of an email (if the email itself has the HTML header) you can see this by opening a message and going to the debug tab.
Unfortunately I cannot replicate the issues you mentioned previously, everything works fine for me.
https://github.com/JWardee/wp-mail-catcher/issues/82
https://github.com/JWardee/wp-mail-catcher/issues/81If you have any other suggestions let me know and I’ll take a look!
Forum: Plugins
In reply to: [Mail logging - WP Mail Catcher] Add button to see pure HTML of emailThanks for reporting those 2 issues. I’ve added them to Github if I can replicate the issues then I’ll get them fixed for the next release!
https://github.com/JWardee/wp-mail-catcher/issues/82
https://github.com/JWardee/wp-mail-catcher/issues/81I think modifying the email before resending is a bit of a niche requirement, if I get lots of requests then I’ll look into it further but I need to keep the size of the plugin small 🙂
If you can add any further info to those 2 Github issues to help me replicate it that would be great!
Forum: Plugins
In reply to: [Mail logging - WP Mail Catcher] Add button to see pure HTML of emailHey,
An interesting idea! I’ve added this idea to the GitHub repo here: https://github.com/JWardee/wp-mail-catcher/issues/80
I’ll likely look to do this in the next minor release but will keep you up to date via the repo discussion 🙂
Forum: Reviews
In reply to: [Mail logging - WP Mail Catcher] Commended for easy configThank you for the review! The search bar feature is now available in version 1.3.4