-
Notifications
You must be signed in to change notification settings - Fork 0
/
replyMessages.js
63 lines (49 loc) · 2.1 KB
/
replyMessages.js
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
const interestedHtmlResponse = `
<p>Hello , </p>
<p>I'm glad to hear that I am interested in the Give Post. Let's move forward with the next steps.</p>
<p>Could you please suggest a suitable time for a demo call or meeting to discuss further details? </p>
<h4>Looking forward to connecting with you soon!</h4>
<p>Best regards,</p>
<p>Jahir Pendhari </p>
`;
const notInterestedHtmlResponse = `
<p>Hello , </p>
<p>Thank you for your email. I appreciate you taking the time to reach out.</p>
<p>However, at this time, I'm not interested in pursuing further discussions. </p>
<p>Kind regards,</p>
<p>Jahir Pendhari </p>
`;
const moreInformationHtmlResponse = `
<p>Hello , </p>
<p>Thank you for your email. I'm happy to gain extra information about the post.</p>
<p>Could you please provide the details ? This will help me tailor the information to your needs more effectively. </p>
<h4>Looking forward to assisting you further!\</h4>
<p>Best regards,</p>
<p>Jahir Pendhari </p>
`;
const interestedHtmlInterestReply = `
<p>Hello , </p>
<p>Thank you for your interest! Would you be available for a demo call?.</p>
<p>Please suggest a time that works for you. </p>
<h4>Looking forward to connecting with you soon!</h4>
<p>Best regards,</p>
<p>Product Team ReachInBox </p>
`;
const notInterestedHtmlInterestReply = `
<p>Hello , </p>
<p>Thank you for considering our product. If you have any further questions in the future, feel free to reach out.</p>
<h4>Looking forward to connecting with you soon!</h4>
<p>Best regards,</p>
<p>Product Team ReachInBox </p>
`;
const moreInformationtmlInterestReply = `
<p>Hello , </p>
<p>Thank you for reaching out.Plese go through the Website one's </p>
<h4>Looking forward to connecting with you soon!</h4>
<p>Best regards,</p>
<p>Product Team ReachInBox </p>
`;
module.exports= {moreInformationHtmlResponse,interestedHtmlResponse,
notInterestedHtmlResponse,interestedHtmlInterestReply,
notInterestedHtmlInterestReply , moreInformationtmlInterestReply
}