How do get Attached files To my email uploaded by users?

  1. Go to your wordpress Dashboard Contact >> Contact Forms. Click “Add New”. Enter form title.
  2. In form section paste the below provided form code.
  3. Then Click on Mail tab. Give your “To ” Email. In “Message body” section copy the code below provided.
  4. In File Attachments section Give your attachments name.
  5. Add the name of the field as a mail-tag.
  6. If you have more than one file attachement field then, enter fields names one by one.
  7. Click Save

FORM CODE COPY AND PASTE YOUR FORM SECTION

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<h3>Personal Information</h3>
 
<label>First Name:[text first-name]</label>
 
<label>Last Name: [text last-name]</label
 
<label>Email: [email email]</label>    
 
<label>Address: [text address]</label
 
<label>Country: [text country_code]</label>
 
<label>State : [text state]</label>
 
<label>City : [text city] </label
 
<label>Zip code: [text zip] </label>   
 
<label>Phone number: [text phonenumber]</label>
     
<h3>Attachments</h3>
<label> Attach your Resume: [file Attach_Resume]</label>
 
<label> Attach a Cover letter: [file coverletter]</label>
 
<strong>[submit "Submit"]</strong>

Message body:: COPY BELOW CODE PASTE YOUR FORM MESSAGE BODY SECTION.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><META http-equiv="Content-Type" content="text/html; charset=utf-8"><style></style></head><body><table class="m_table m_table-bordered m_responsive" border="2" width="700px" cellpadding="5" cellspacing="5">
   
     
 
<td>
     
    <th colspan="3">  <h3>Personal Information</h3></th>
    <tr>
    <td>* First Name </td>
    <td></td>
    <td>[first-name] </td>
    </tr>
     
    <tr>
        <td>* Last Name </td>
        <td></td>
        <td>[last-name]</td>
    </tr>
     
    <tr>
    <td>* Email </td>
    <td></td>
    <td> [email]</td>
    </tr>
     
<tr>
    <td>Address</td>
    <td></td>
    <td>[address]</td>
    </tr>
 
<tr>
    <td>Country</td>
    <td></td>
    <td>[country_code]</td>
    </tr>
 
    <tr>
    <td>* State </td>
    <td></td>
    <td>[state]</td>
    </tr>
 
     
    <tr>
    <td>* City </td>
    <td></td>
    <td>[city] </td>
    </tr>
 
    <tr>
    <td>* Zip code </td>
    <td></td>
    <td>[zip] </td>
    </tr>
 
    <tr>
    <td>* Phone number </td>
    <td></td>
    <td>[phonenumber] </td>
    </tr>
 
    <th colspan="3"><h3>Attachments</h3></th>
    <tr>
         
    <td>* Attach your Resume </td>
    <td></td>
    <td>[Attach_Resume]</td>
    </tr>
 
    <tr>
    <td>Attach a Cover letter</td>
    <td></td>
    <td>[coverletter]</td>
    </tr>
</table>
 
     
    </body></html>

Leave a Reply

Your email address will not be published. Required fields are marked *