backup email

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "backup email".
... in backup email.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<override_macro name="backup email" parameters="email, file" unindent="true">
    <n.new_email.>
        <n.send>
            <to><n.email/></to>
            <subject><t>Backup of <t.location.root_node.subject/></t></subject>
            <text_part>
                <t>Dear user,</t>
 
                <t>Here is your backup file:</t>
 
                <n.server_url/>/backups/<n.encode_url.file/>
 
                <t>Sincerely,</t>
                <t>The Gabble team</t>
            </text_part>
        </n.send>
    </n.new_email.>
</override_macro>
Overrides default macro
... in backup.naml
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<macro name="backup email" parameters="email, file" unindent="true">
    <n.new_email.>
        <n.send>
            <to><n.email/></to>
            <subject><t>Backup of <t.location.root_node.subject/></t></subject>
            <text_part>
                <t>Dear user,</t>
 
                <t>Here is your backup file:</t>
 
                <n.server_url/>/backups/<n.encode_url.file/>
 
                <t>Sincerely,</t>
                <t>The Nabble team</t>
                ________________________________________
                <t>Free Embeddable <t.app.root_node.view_name/></t> powered by Nabble
                <n.nabble_homepage/>
            </text_part>
        </n.send>
    </n.new_email.>
</macro>