-
Notifications
You must be signed in to change notification settings - Fork 0
/
email.aiml
88 lines (71 loc) · 3.51 KB
/
email.aiml
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
<?xml version="1.1" encoding="UTF-8"?>
<aiml>
<category>
<pattern>MY EMAIL IS *</pattern>
<template>Alright, I will remember that. <think><set name="email"><denormalize><star/></denormalize></set></think></template>
</category>
<category>
<pattern>CALVIN S EMAIL IS *</pattern>
<template>Alright, I will remember that. <think><set name="email-1"><denormalize><star/></denormalize></set></think></template>
</category>
<category>
<pattern>JAMES EMAIL IS *</pattern>
<template>Alright, I will remember that. <think><set name="email-2"><denormalize><star/></denormalize></set></think></template>
</category>
<category>
<pattern>IZZY S S EMAIL IS *</pattern>
<template>Alright, I will remember that. <think><set name="email-3"><denormalize><star/></denormalize></set></think></template>
</category>
<category>
<pattern>GABY S EMAIL IS *</pattern>
<template>Alright, I will remember that. <think><set name="email-4"><denormalize><star/></denormalize></set></think></template>
</category>
<category>
<pattern>SEND EMAIL TO CALVIN</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-1"/>")</script></template>
</category>
<category>
<pattern>SEND EMAIL TO JAMES</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-2"/>")</script></template>
</category>
<category>
<pattern>SEND EMAIL TO IZZY</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-3"/>")</script></template>
</category>
<category>
<pattern>SEND EMAIL TO GABY</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-4"/>")</script></template>
</category>
<category>
<pattern>EMAIL * TO CALVIN</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-1"/>?body=<star/>")</script></template>
</category>
<category>
<pattern>EMAIL * TO JAMES</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-2"/>?body=<star/>")</script></template>
</category>
<category>
<pattern>EMAIL * TO IZZY</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-3"/>?body=<star/>")</script></template>
</category>
<category>
<pattern>EMAIL * TO GABY</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-4"/>?body=<star/>")</script></template>
</category>
<category>
<pattern>EMAIL CALVIN SUBJECT *</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-1"/>?subject=<star/>")</script></template>
</category>
<category>
<pattern>EMAIL JAMES SUBJECT *</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-2"/>?subject=<star/>")</script></template>
</category>
<category>
<pattern>EMAIL IZZY SUBJECT *</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-3"/>?subject=<star/>")</script></template>
</category>
<category>
<pattern>EMAIL GABY SUBJECT *</pattern>
<template>Here you go: <script language="JavaScript">var x = window.open("mailto:<get name="email-4"/>?subject=<star/>")</script></template>
</category>
</aiml>