You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/2.0/advanced/email-inbound-parse.md
+34-18Lines changed: 34 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -69,29 +69,45 @@ Krayin CRM allows you to receive and manage your emails using the IMAP protocol.
69
69
70
70
**IMAP** (Internet Message Access Protocol) allows you to access your emails from any device without downloading them to your computer. Emails stay on the server, and you view them directly, with attachments only downloaded if needed. IMAP is ideal for accessing email on multiple devices, as any changes (like reading or deleting) are synced across all devices, making email management efficient and ensuring data consistency everywhere.
71
71
72
-
#### **Configure .env File**
72
+
#### Configuring IMAP Settings
73
73
74
-
To enable IMAP in Krayin CRM, you need to configure the `.env` file. Open the `.env` file in the root directory of your Laravel project and make the following changes:
74
+
To properly configure your email service via IMAP, follow the steps below to set up the necessary parameters through the application’s configuration interface.
75
75
76
-
```env
77
-
MAIL_RECEIVER_DRIVER=webklex-imap
76
+
#### Step 1: Access IMAP Settings
78
77
79
-
IMAP_HOST=imap.example.com # Replace with your IMAP host (e.g., imap.gmail.com)
80
-
IMAP_PORT=993 # Use port 993 for IMAP with SSL encryption
81
-
IMAP_ENCRYPTION=ssl # Choose 'ssl' or 'tls' based on your server settings
82
-
IMAP_VALIDATE_CERT=true # Set this to 'true' to validate SSL certificates
83
-
IMAP_USERNAME=your_username # Replace with your IMAP account username (email address)
84
-
IMAP_PASSWORD=your_password # Replace with your IMAP account password
85
-
```
78
+
1. **Open Your Application Dashboard**:
79
+
- Navigate to the **Configuration** section in your application.
80
+
81
+
2. **Select IMAP Settings**:
82
+
- Click on **IMAP Settings** from the menu.
83
+
84
+
#### Step 2: Enter IMAP Configuration Details
85
+
86
+
In the IMAP settings interface, you will find fields to input the following parameters:
#### **Explanation of the `.env` IMAP Variables:**
108
+
#### Step 4: Save Configuration
88
109
89
-
-**IMAP_HOST**: The IMAP server host name (e.g., `imap.gmail.com` for Gmail, `imap.example.com` for other email providers).
90
-
-**IMAP_PORT**: The port used for IMAP communication, typically `993` for SSL.
91
-
-**IMAP_ENCRYPTION**: Defines the encryption method for secure communication. It can be `ssl` or `tls`.
92
-
-**IMAP_VALIDATE_CERT**: Set to `true` to validate SSL certificates for secure communication.
93
-
-**IMAP_USERNAME**: Your IMAP email account username, which is typically your email address.
94
-
-**IMAP_PASSWORD**: Your IMAP email account password.
110
+
After entering all required fields, click the **Save** button to store your IMAP configuration. This will ensure your application can connect to the email server using the provided settings.
Copy file name to clipboardExpand all lines: docs/master/advanced/email-inbound-parse.md
+35-18Lines changed: 35 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -69,29 +69,46 @@ Krayin CRM allows you to receive and manage your emails using the IMAP protocol.
69
69
70
70
**IMAP** (Internet Message Access Protocol) allows you to access your emails from any device without downloading them to your computer. Emails stay on the server, and you view them directly, with attachments only downloaded if needed. IMAP is ideal for accessing email on multiple devices, as any changes (like reading or deleting) are synced across all devices, making email management efficient and ensuring data consistency everywhere.
71
71
72
-
#### **Configure .env File**
73
72
74
-
To enable IMAP in Krayin CRM, you need to configure the `.env` file. Open the `.env` file in the root directory of your Laravel project and make the following changes:
73
+
#### Configuring IMAP Settings
75
74
76
-
```env
77
-
MAIL_RECEIVER_DRIVER=webklex-imap
75
+
To properly configure your email service via IMAP, follow the steps below to set up the necessary parameters through the application’s configuration interface.
78
76
79
-
IMAP_HOST=imap.example.com # Replace with your IMAP host (e.g., imap.gmail.com)
80
-
IMAP_PORT=993 # Use port 993 for IMAP with SSL encryption
81
-
IMAP_ENCRYPTION=ssl # Choose 'ssl' or 'tls' based on your server settings
82
-
IMAP_VALIDATE_CERT=true # Set this to 'true' to validate SSL certificates
83
-
IMAP_USERNAME=your_username # Replace with your IMAP account username (email address)
84
-
IMAP_PASSWORD=your_password # Replace with your IMAP account password
85
-
```
77
+
#### Step 1: Access IMAP Settings
78
+
79
+
1. **Open Your Application Dashboard**:
80
+
- Navigate to the **Configuration** section in your application.
81
+
82
+
2. **Select IMAP Settings**:
83
+
- Click on **IMAP Settings** from the menu.
84
+
85
+
#### Step 2: Enter IMAP Configuration Details
86
+
87
+
In the IMAP settings interface, you will find fields to input the following parameters:
#### **Explanation of the `.env` IMAP Variables:**
109
+
#### Step 4: Save Configuration
88
110
89
-
-**IMAP_HOST**: The IMAP server host name (e.g., `imap.gmail.com` for Gmail, `imap.example.com` for other email providers).
90
-
-**IMAP_PORT**: The port used for IMAP communication, typically `993` for SSL.
91
-
-**IMAP_ENCRYPTION**: Defines the encryption method for secure communication. It can be `ssl` or `tls`.
92
-
-**IMAP_VALIDATE_CERT**: Set to `true` to validate SSL certificates for secure communication.
93
-
-**IMAP_USERNAME**: Your IMAP email account username, which is typically your email address.
94
-
-**IMAP_PASSWORD**: Your IMAP email account password.
111
+
After entering all required fields, click the **Save** button to store your IMAP configuration. This will ensure your application can connect to the email server using the provided settings.
0 commit comments