text_email_message_with_signature

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 "text_email_message_with_signature".
... in text_email_message_with_signature.naml
1
2
3
4
5
<override_macro name="text_email_message_with_signature" requires="node" unindent="true">
    <n.email_message.>
        <n.node_message_as_text />
    </n.email_message.>
</override_macro>
Overrides default macro
... in email.naml
178
179
180
181
182
183
184
185
186
187
188
<macro name="text_email_message_with_signature" requires="node" unindent="true">
    <n.email_message.>
        <n.node_message_as_text />
        <n.if.owner.has_signature>
            <then>
                <n.crlf/>-----
                <n.owner.signature.as_text/>
            </then>
        </n.if.owner.has_signature>
    </n.email_message.>
</macro>