Skip to main content

Telstra Mobile Call Forwarding dial codes


To enable voicemail:
*61*101**30#Divert to 101 when unanswered after 30 seconds
*62*101#Divert to 101 when unreachable
*67*101#Divert to 101 when busy
*21*101#Divert all calls to 101

To disable voicemail:
#61#Cancel divert when unanswered
#62#Cancel divert when unreachable
#67#Cancel divert when busy
#002#Cancel all diverts

To Check voicemail diversions:
*#61#Check divert when unanswered
*#62#Check divert when unreachable
*#67#Check divert when busy


Comments

Popular posts from this blog

Javascript Form Validation

It's real simple. All you need to do is call a javascript function in a html  " onsubmit " in the form tag as a javascript return, like this       <form method="post" action="dosomething.php" onsubmit="return validateForm();"> If the code completes ok, the form is then sent to the page listed in "action" http://www.w3schools.com/js/js_form_validation.asp If the function specified in the onsubmit returns false, then the form is not sent to the page mentioned in action.