Hi All,
We can use wp_mail function send emails with attachments
<?php
move_uploaded_file($_FILES[“attachment”][“tmp_name”],WP_CONTENT_DIR .’/uploads/’.basename($_FILES[‘attachment’][‘name’]));
$attachments = array(WP_CONTENT_DIR .”/uploads/”.$_FILES[“attachment”][“name”]);
wp_mail($to, $subject, $message, $headers, $attachments);
?>