/*
 * This is a javascript file used for helping to implement the mailer functionality.
 */


function handleSecurityCode(id) {
  var input = document.getElementById(id);
  if(input) {
    input.name = '__security_code';
    input.value = '42';
  }
}

handleSecurityCode('mailer-security-code');


