send_node_as_email_to_user

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 "send_node_as_email_to_user".
... in reply.naml
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
<macro name="send_node_as_email_to_user" dot_parameter="node_attr" requires="subscription" unindent="true">
    <n.set_local_subscription.this_subscription/>
    <n.set_local_node.node_attr/>
    <n.send_subscription_email node_attr="[n.node_attr/]">
        <text_part>
            <n.local_node.text_email_message_with_signature/>
 
            ______________________________________
            <t>If you reply to this email, your message will be added to the discussion below</t>:
            <n.local_node.url/>
            This email was sent by <n.visitor.name/> (via Nabble)
            <n.if.not.local_subscription.is_subscribed>
                <then>
                    To receive all replies by email, subscribe to this discussion: <n.local_subscription.subscribe_by_code_url/>
                </then>
            </n.if.not.local_subscription.is_subscribed>
        </text_part>
        <html_part>
            <n.local_node.html_email_message_with_signature/>
            <br/><br/>
            <hr noshade="noshade" size="1" color="#cccccc" />
            <div style="color:#444; font: 12px tahoma,geneva,helvetica,arial,sans-serif;">
                <div style="font-weight:bold"><t>If you reply to this email, your message will be added to the discussion below</t>:</div>
                <a href="[n.local_node.url/]"><n.local_node.url/></a>
            </div>
            <div style="color:#666; font: 11px tahoma,geneva,helvetica,arial,sans-serif;margin-top:.4em">
                This email was sent by <a href="[n.visitor.url/]"><n.visitor.name/></a> (via Nabble)<br/>
                <n.if.not.local_subscription.is_subscribed>
                    <then>
                        To receive all replies by email, <a href="[n.local_subscription.subscribe_by_code_url/]">subscribe to this discussion</a><br/>
                    </then>
                </n.if.not.local_subscription.is_subscribed>
            </div>
        </html_part>
    </n.send_subscription_email>
</macro>