How to send email with attachment using Codeigniter
Step 1 : we want to create the front end on view folder. just copy and paste the below code.
<form action="<?php echo site_path?>career/mail_resume" enctype="multipart/form-data" method="POST" class="col s12">
<input type="hidden" name="<?php echo $this->security->get_csrf_token_name(); ?>" value="<?php echo $this->security->get_csrf_hash();?>" />
<div class="row">
<div class="input-field col s6">
<input id="first_name" type="text" name="fname" class="validate">
<label for="first_name">First Name</label>
</div>
<div class="input-field col s6">
<input id="last_name" type="text" name="lname" class="validate">
<label for="last_name">Last Name</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<input id="icon_telephone" type="tel" name="mob" class="validate">
<label for="icon_telephone">Mobile</label>
</div>
<div class="input-field col s6">
<input id="email" type="email" name="email" class="validate">
<label for="email">Email</label>
</div>
</div>