Copied from my Answer for “An old plugin self-made stoped sending mail”:
Many E-Mail-Hosters changed their rules to prevent spam. Often times, E-Mails that have one domain name in their “from”-Tag and come from a server with a different domain are rejected. So my guess is, maybe the emails are still sent, but not received.
You can check this by changing this line:
$headers = "From: ".$name." <" . strip_tags($email) . ">\r\n";
to something like this:
$my_domain = $_SERVER['HTTP_HOST'];
$headers="From: orders@".$my_domain."\r\n".'Reply-To: '.$senderEmail."\r\n";
and check if the e-mails are sent and received correctly now. (By setting the Reply-To Header, the correct Address is inserted when clicking on “Reply” in the Mail Client.)
Related Posts:
- Custom form, shortcode, and submit handler
- Simple contact form with field validation
- Raw output (preventing wpautop)
- other shortcodes in Contact form 7 MAILS [closed]
- How to add and submit input fields using a shortcode?
- Form Shortcode not saving data to WP database
- Getting error on submitting form using Ajax with shortcode
- Adding custom form within add_shortcode
- Modifying the wordpress login page and then referencing it with a shortcode problem
- Form processing: How to process form before output and access data from shortcode
- Create shortcode for each form field in contact form 7
- How can I use a plugin shortcode inside of a html form?
- Send Mail with link to current_user
- How to display a page dependent on a url parameter supplied by a form/button page?
- WordPress shortcode select option not working [closed]
- current_shortcode() – detect currently used shortcode
- Get shortcode name from within it’s callback function? [duplicate]
- Tinymce – How to hook before or after live shortcodes rendering?
- How to customize a shortcode using the customizer
- Get post id shortcode
- Front-End Form Submission in Shortcode
- Getting attribute value from shortcode
- Get shortcode attributes outside shortcode function
- How to make this shortcode work for post content
- shortcode doesn’t work
- Problem with email_exists in shortcode
- Alternate text if shortcode returns no data
- sql query in shortcode not working
- Global, network-wide shortcodes or text replace functions
- Video size and border radius using a shortcode
- How to use div class between the shortcode variable?
- wp_editor returns the shortcode and not render the output
- Prevent wordpress from rendering shortcode in post
- Error do_shortcode In WooCommerce Template
- Embedding Instagram via shortcode doesn’t work as advertised in official docs
- Execute shortcode only once in the page
- Can a shortcode return its own name?
- Order Woocommerce Products by Latest Reviewed
- $content not null in shortcode, even though it is self closing
- Nesting shortcodes results in the inner shortcode being placed AFTER outer shortcode
- i have create shortcode that work but not perfect coding
- menu item to display the most recent post
- how to format / execute post content and shortcode?
- How to get the $atts of a shortcode
- Single post content custom order
- Adding a class to shortcode API
- Parse Error: unexpected ‘}’ while creating Shortcode with Loop [closed]
- Code is providing a row of data but not formatting it as table
- Pass data back to TinyMCE from Thickbox
- Forcing WP to embedd a video when using a shortcode
- Shortcode for output of wp_get_archives displays at top of post
- How can I execute shortcode outside the loop?
- Shortcode is not returned correctly
- How do I make a shortcode?
- passing markup thought a shortcode attribute
- How to have shortcode autofilling the content if the attribution is specified?
- Shortcode argument multiple values
- Do I need to escape number in this shortcode function?
- How can I list only custom shortcodes?
- Substite Category Slug in a Shortcode
- add new attributes into existing shortcodes
- Anchor text in Short code →
- Need 2 separate elements of add_shortcode for presentation
- Why ‘do_shortcode’ doesn’t work in a REST request?
- Shortcode to return an image based on post taxonomy
- How to show an image via shortcode
- Form submission to another page returning 404 error [duplicate]
- How to put custom admin setting field into a shortcode
- shortcode – I need to throw a message or load a different page
- WordPress post shortcode pagination not working
- Shortcode do not return a value
- How to use multiple (or array) values in $content of shortcode?
- How to display content if user meta data isn’t empty with shortcode
- How to display total user count by specific role in WordPress as statistics?
- How to style inline code in block editor?
- Is it possible to capture the content outside/between shortcodes?
- Add Style to text in a PHP block
- How to add new images to existing shortcode configuration?
- Content included from pagination
- How to completely prevent WordPress from destroying/modifying my shortcode outputs?
- do_shortcode for is_page(slug)
- Create shortcode to display specific post in relationship current date
- Add custom shortcodes to the Welcome Mail
- How to handle multiple nested shortcodes with different tags?
- Using shortcode to stop post content from displaying
- Nested WordPress Shortcodes of Different Types
- Initialize add_action() for every copy of a specific shortcode
- WP_Editor Shortcode Issue
- Shortcode not working in custom post types
- Shortcode or placeholder for theme options page?
- Remove some tags from shortcodes output? Trying to fix autop
- do_shortcode & render custom field won’t work
- shortcodes inside shortcode to sum values
- is_mobile as shortcode
- Form submit from modal window to parent window
- Is it possible to change a shortcode parameter based on a media query?
- IFrame Shortcode plugin – issue
- Working with Shortcode, AJAX, Elementor
- How to exclude some cats from wp_list_categories using shortcut
- How can I create a shortcode that shows a list of categories on the single product page?