<div dir="ltr"><div>Hi all,</div>   I want to send my Dancer2 TT page as an email <i>and</i> continue to generate a normal web response.<div><br></div><div>This forking discussion seems like an excellent approach.</div><div><br></div><div>I have:</div><div>1. Created a fork in 'hook before_layout_render' (based on a '<font face="monospace, monospace">var want_email = 1;</font>').</div><div>2. The parent continues to serve the webpage (as normal, after undef'ing want_email), the grandchild sends the email (in 'hook after_layout_render')</div><div><i><br></i></div><div><i>(I'm doing this in before_layout_render so I can change the layout (<font face="monospace, monospace">app->template_engine->layout('email');</font>) to a lighter, more email-friendly layout)</i><br></div><div><br></div><div>An additional benefit of this approach is that the email is sent asynchronously, since Gmail-dispatched emails seem to take 2-3s to send.</div><div><br></div><div>This all works well and I am grateful for this discussion and Andy's example code, but I am unclear about the guard, per below.</div><div>I understand what it is intended to do, but if I put:</div><div><font face="monospace, monospace">   my $guard = guard { info "I'm dying"; POSIX::_exit(0); };</font></div><div>in my code, the code immediately prints the "I'm dying" and exits.</div><div><br></div><div class="gmail_extra">Am I missing something in how to use Guard properly?</div><div class="gmail_extra"><br></div><div class="gmail_extra">BTW, if someone has a better pattern for emailing a page, I'd welcome it.</div><div class="gmail_extra"><br></div><div class="gmail_extra">cheers,</div><div class="gmail_extra">Nathan</div><div class="gmail_extra"><br><div class="gmail_quote">On 3 April 2017 at 21:21, Andrew Beverley <span dir="ltr"><<a href="mailto:andy@andybev.com" target="_blank">andy@andybev.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Mon, 3 Apr 2017 13:22:16 +0300 Shlomi Fish wrote:</span><br>
> like "guard"s<br>
<br>
You should consider a guard, to ensure that nothing in the grandchild<br>
causes it to hang around. For example, if there is an exception which<br>
is then caught before the _exit(), you can end up with the grandchild<br>
hanging around serving web requests to nobody ;-)<br></blockquote></div></div></div>