I’m searching for a good thing to do after doing a redirect to a mailto after clicking on a link to send mail. Is there any good way to do close, or something clever to do after the user “received” the option to send the mail?
Only code up to here is the Header location one (with code to get email, that isn’t really pertinent)
Header("Location: mailto:mail@email.com");
As stated in the comment below:
My bad, that was a bit dumb. I thought
for a moment that mailto opened a new
window, but in fact I forgot the new
_blank window :/ Sorry for this question..
don’t open a window in the first place, just do a simple:
Or is there a need to do this via header?