One way is to send a default value on to the next constructor, viz, the constructor with the next higher number of arguments.
public EmailFrame()
{
this(null);
}
public EmailFrame(String windowTitle)
{
// SETS UP THE UI HERE + THE CODE FOR THE TITLE
}