To attach a file to the email, you need to specify the Path to it like this:
<?php
$attachments = array( WP_CONTENT_DIR . '/uploads/file_to_attach.zip' );
$headers="From: Test Name <[email protected]>" . "\r\n";
wp_mail( '[email protected]', 'subject', 'message', $headers, $attachments );
?>
either is a string or an Array (for multiple files), you can see the accepted parameters here wp_email
. Not in the header like i can see here:
$header .= "Content-Disposition: attachment; filename=\"" . $FileName . "\"\r\n\r\n"; // For Attachment
Related Posts:
- How can I make my custom shortcode work in a Custom HTML Widget?
- How to trigger $_GET request within admin plugin page?
- How can I get WordPress to save comments in markdown format?
- How to translate to spanish wordpress hardcoded content/files?
- How to change a wordress plugin php code in my child’s functions.php file?
- Can’t access 3rd party API, code works on local server but not on wordpress
- How to create a “Most Popular” & “Latest” TAB in WordPress
- Customizing subject in comment notification e-mails
- Making plugin unique to not conflict with plugins with the same name
- How to find out if option exists but is empty?
- How to pass JavaScript variable to PHP in wordpress widget?
- Unable to add admin notice on plugin activation
- How To Ignore a Filter On Applying Filter the Content In a Function
- Saving Plugin settings to the database
- Add CSS animation as Preloader to WordPress
- Errors while using ajax from external wordpress page
- shortcode doesn’t work
- Deleting images through upload folder, but not deleting from media library
- WordPress plugin installation
- Create or Update thousands of woocommerce products via PHP
- send_headers don’t work on wordpress multisite
- Plugin exceeds memory limit
- Update Option Error: Notice: Undefined index
- How to generate video out of images via WordPress plugin
- Where should I save an API key of my user when installing my plugin?
- Custom form action to handle data inside a plugin
- Self deactivate plugins after an action occurs
- How to periodically scrape and cache strings from remote txt files. – My First Plugin
- WP Post Template – Templates in own folder
- Avoid class name collision when using third party libraries in plugins?
- Edit Yoast SEO breadcrumbs output [closed]
- Using a custom plugin to capture input data via Ajax and PHP
- Image upload and download from front-end
- wp_remote_get() returns 403 while file_get_contents() does not
- How to output CMB2 select options from repeated groups select elements?
- Ajax call returning 0
- How to deal with WordPress and Pocket API to automate content curation on my hosted wordpress blog? [closed]
- WP All Import – Execute Imports
- Conditional attributes and logic per product category
- How to insert HTML/JavaScript form into WordPress page? [closed]
- Notify comment author upon reply
- WordPress get_avatar function not correct working
- How to include this jQuery File in wordpress?
- Check if variable is set in filter
- Include a php file from another plugin
- Add User Role: Pre-saved in User-Meta [SOLVED]
- Plugin onclick button activate other plugin
- How to create plugin/ page that reads from database
- Save user total active time after login in wordpress [closed]
- Send email with list of active plugins upon activation/deactivation
- How WordPress core manage the plugin installation
- Switch from wp-cron to a server cron job
- Calling a save function from a “submit” button
- Wp Debug Enabled True Notices and Warning
- can’t unzip file
- How to save Setting pages data to the database?
- i need to make custom cron_schedule with custom interval time as a parameter into a custom payment gateway plugin wordpress
- Unexpected add action function in WP plugin
- How to create admin setting for this small plugin
- Allow a particular user to access a particular plugin?
- Prevent WordPress from sending set-cookie http header
- Cookie value changes back to previous value after changing
- Change plugin descriptions
- Is there any way to sync Facebook Comments and with comments on WordPress website?
- Problem with checked box on wp car manager plugin
- I want to schedule email (date, time is in database->table) wp_schedule_event() not working
- WordPress rewrite rule depend on meta values not ids
- update_post_meta is not working for me when I use e.preventDefault for update button
- How to use Datatable with Ajax when creating plugin on WordPress?
- Problem with wordpress has_action() function
- Offering a freemium plugin (a free version + paid version)
- Why is my form going to frontend on html form submission present on the php files inside my custom plugin?
- Showing how many times is plugin activated or deactivated
- How to echo a PHP Code After the Content
- Woocommerce list variations that are added already to cart in Single Product
- WordPress Admin sub-level menu issue
- Change pricing in Woocommerce based on Category and Product [closed]
- Plugin communication between sites that use it?
- Passing ajax variable to more than one wordpress plugin function
- WordPress environment not loading properly
- How to remove a css class for any wordpress page
- Populate select option with JSON file
- insert multiple entries in database using a loop issue
- Displaying friend’s posts only
- Theme editor removes backslashes
- Plugin Hook: Get posts
- Undefined variable _POST
- How use Dynamic hyperlink on each wordpress post?
- Unable to show 4 products in a row
- Send email notification when meet the condition
- What can I do to customize a widget provided with this plugin? from where have I to start?
- Function not being called on form submit, only blank admin-post.php page
- wp_handle_upload – specified file failed upload test
- How can I save the selected page in the dropdown after anyone clicks on Save Changes?
- How can I save the selected page in the dropdown after anyone clicks on Save Changes?
- Limit entry to a WordPress page
- How to make a Template page to show the information of different things Shop and Product page?
- WordPress Throwing Deprecated Errors on its own Files
- plugin doesn’t retrieve data from database
- How to create different woocommerce single_product.php pages for each product? [closed]