
function sendMail(name, company, tld, subject) {
  locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + tld + '?' + 'subject=' + subject;
  window.location.replace(locationstring);
}

