-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (112 loc) · 2.92 KB
/
index.html
File metadata and controls
115 lines (112 loc) · 2.92 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Frejun Salesforce App - Setup Guide</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 1.6;
margin: 0;
padding: 1rem;
background: #fafafa;
color: #333;
}
.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 1.5rem;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 1.4rem;
margin-bottom: 0.5rem;
}
h2 {
font-size: 1.2rem;
margin-top: 1.5rem;
border-bottom: 2px solid #eee;
padding-bottom: 0.3rem;
}
ol,
ul {
margin-left: 1.5rem;
}
a {
color: #0070f3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.support {
margin-top: 2rem;
padding: 1rem;
background: #f0f7ff;
border-left: 4px solid #0070f3;
border-radius: 6px;
}
.repo-link {
margin-top: 1rem;
text-align: right;
}
</style>
</head>
<body>
<div class="container">
<h1>Frejun Salesforce App</h1>
<p>
The Frejun Salesforce App seamlessly integrates Frejun's telephony
services with Salesforce. This allows users to make calls directly from
the Frejun dialer within Salesforce and view caller information for
incoming calls.
</p>
<h2>Post-Installation Setup</h2>
<p>
After installing the package, please follow the steps below to set up
the Call Center:
</p>
<ol>
<li>Go to <b>Setup</b> → search for <b>Call Centers</b>.</li>
<li>
Click <b>Import</b> and upload the
<code>FrejunDialer-definition.xml</code> file from
<a
href="https://github.com/frejun-tech/frejun-salesforce"
target="_blank"
>this repo</a
>.
</li>
<li>
After successfully importing the file, make sure you are on the call
centers page.
</li>
<li>
Click <b>Manage Call Center Users</b> and add the Salesforce users who
can use the Frejun Dialer.
</li>
</ol>
<div class="support">
<h2>Support</h2>
<p>
For installation or troubleshooting help, contact the Frejun support
team at: <br />
<a href="mailto:support@frejun.com">support@frejun.com</a>
</p>
</div>
<div class="repo-link">
🔗
<a
href="https://github.com/frejun-tech/frejun-salesforce"
target="_blank"
>
View Full Repo on GitHub
</a>
</div>
</div>
</body>
</html>