Julian
Forum Replies Created
-
Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Disable for certain sender addressHello Sebastian,
depending on which plugins you are using your parameters could look differently. I have done an
error_logof$mailon my test system using only WP HTML Mail and WP HTML Mail WooCommerce, this is what the array looks like:### - $mail - ### Array ( [to] => test@test.com [subject] => Deine Bestellung bei Dev 2 ist nun abgeschlossen [message] => <!DOCTYPE html>... [headers] => Content-Type: text/html Reply-to: Dev 2 <example@mail.com> [attachments] => Array ( ) [sender_plugin] => woocommerce )So here are the standard keys you can check and write a function for:
[to] [subject] [message] [headers] [attachments] [sender_plugin]This is all the help I can give you for now. You will have to write the function yourself, for your specific use case.
Best regards
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Disable for certain sender addressHello Sebastian,
at quick glance I would write the code like this:
add_filter( 'haet_mail_use_template', 'customize_template_usage', 10, 2 ); function customize_template_usage( $use_template, $mail ){ if( $mail['from'] == 'info@desiredemail.com' ){ return false; } return true; }however, I have not checked my test-system to see if
$mail['from']is a valid parameter. You could do avar_dump($mail)orerror_log(print_r($mail, true));within this function to view which keys are available for use in the filter.Please let me know if you require further assistance. I will check the paremeters on my test system if you need further help.
Best regards
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Disable for certain sender addressHello Sebastian,
can you please paste the code you have been trying to use? If not please give me an example of the parameter, by which you would like to exclude the templates. Then I can give you a code example.
Best regards
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] haet_mail_preheaderHello @martenw,
our plugin has a preview function in the “E-Mail template” options, where you configure the layout.
Concerning your last question, the pre_header is not being displayed, it’s needed for our plugins preview functionality. So I suppose it wouldn’t break any outgoing emails, but you should test them all thoroughly if you make custom changes. If you still require assistance, please email us to support(at)codemiq.com.
Best regards
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] haet_mail_preheaderHello @martenw,
as stated above, the pre_header is for our preview functionality. As I do not know what exactly you are trying to do and what your set up looks like, I can not be of more help.
I would require further information to be able to help you.Best regards
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] haet_mail_preheaderHello @martenw,
Videos in e-mail do not work, as far as I know. Either way, it’s not a good idea to try to add a video to an email header.
Best regards
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] No Logo on MobileForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] No Logo on MobileForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] No Logo on MobileHello @maryando,
I understand your frustration and apologize for any inconvenience you’re experiencing.
I’ve conducted tests by sending emails to my iPhone using Apple Mail and haven’t encountered any issues. Additionally, we haven’t received similar reports from other users, suggesting that the problem may be specific to your site.
Regrettably, I’m unable to address an issue occurring solely on your site without more detailed information or access.
I’d greatly appreciate your assistance in resolving this matter. Please reach out to us at support(at)codemiq.com with further details or steps you’ve already taken to troubleshoot. I’m eager to assist you, but resolving this will require collaboration.
Thank you for your cooperation.
Best regards,
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] No Logo on MobileHello @maryando,
have you had the time to try the steps I mentioned above?
Best regards
JulianHello @mballew,
if you still have troubles, can you please elaborate on your problem?
Have you taken further steps? Can you identify the cause of your issue?
Is there anything else i can help you with?
Best regards
JulianIf your problem is related to an error, please clarify and explain the problem in detail.
Best regards
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] No Logo on MobileHello maryando,
I regret seeing that you are having issues.
There are several possible causes for the problem. It can happen because of the e-mail client, gmail for example is notorious for blocking images.
Have you implemented an image from your website (media library), or uploaded it to a file sharing service and pasted the url?
If it’s self-hosted, make sure the appropriate read rights have been given to the folder. The file must be accessible from the outside, else it will not be displayed.
If that does not work, try to upload it on a file sharing service like gmail fotos and extract the url and paste it into the appropriate field.
Please paste the URL of your image here, so I can test if it is accessible.
I am happy to help, but without access to your site, you will have to do some testing yourself, else there is not much I can do to help you.
Best regards
JulianHello @mballew,
I don’t think I quite understand what your issue is. I have the impression you have a security issue and that your problem is not directly related to our plugin.
You should make sure to secure your site, I highly recommend you change all your passwords and use a password manager. Make the passwords as complicated as you can.
Unless you can provide us with error messages or a concrete problem we can investaigate, there is nothing I can do to help you, besides recommending wordpress hardening, securing your website and what I wrote above.
Best regards
Julian