Tuesday

opener reload javascript

to close popup and reload main window:

<script language='javascript'>
window.opener.location.reload();
window.close();
</script>

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...