I try to set the sender for the e-mail VPE sends. But without result. Whatever i try the 'From'-field remains empty.
Our soft is written in OpenEdge10 (Progress), VPE Professional Edition (version 3.60.0.4). We use the vpe dll.
I've tried all the workarounds i found in existing topics (adding 'SMTP:', sending without name-resolving, etc...). Nothing helps.
The code we use is:
run VpeSetMailText in lhVpe(hDoc, {&EmailText}). /* tekst in email */
run VpeSetMailWithDialog in lhVpe(hdoc, 0).
run VpeSetMailSubject in lhVpe(hdoc, {&EmailSubject}).
run VpeAddMailReceiver in lhVpe(hdoc, "example@mail.be", 2147483647).
run VpeSetMailSender in lhVpe(hDoc, "info@mail.be").
run VpeMailDoc in lhVpe(hDoc, output x1).
Plz help.