First, it didn´t work, had to fix the line 268/269 from MailMerger.java
from:
- Code: Select all
tmp = tmp.trim();
String key = tmp.substring(0, tmp.indexOf(" ")) ;
to:
- Code: Select all
String key = tmp.trim();
Why the substring from 0 to " " ? The line before it does the trick, with the trim().. ...