Search found 4 matches

by IL
Wed Dec 20, 2006 10:25 pm
Forum: Installation & Upgrades
Topic: Facing a strange problem while sending emails..
Replies: 4
Views: 6662

Hi Navin,

I don't know about your sendmail configuration, but sendmail definitly delivered both of your mails. I can tell, because sendmail wrote "stat=Sent" in both loglines.

The real difference is: the mail for the domain abc.com got delivered to the mailhost 127.0.0.1 which is the host sendmail ...
by IL
Wed Dec 20, 2006 10:13 pm
Forum: Bugs, bug fixes & releases
Topic: SOLVED: problems with ##AGNUID##
Replies: 23
Views: 44859

Using OpenEMM 5.0.2 I found that ##AGNUID## is only substituted if it is inside a trackable link .
It took me some time to find out that [agnUID] is always substituted. So to send links per email which:
- are not trackable
- need the UID
simply build them like this one:
http://somehost.somedomain ...
by IL
Wed Dec 20, 2006 10:01 pm
Forum: Using OpenEMM
Topic: Charset of $customerData fields
Replies: 1
Views: 4138

Charset of $customerData fields

I had to change line 83 in UserFormExecuteAction.java to get the correct charset encoding. Old line:
String responseMimetype=new String("text/html");
My new line is:
String responseMimetype=new String("text/html; charset=utf-8");
I'm not sure if this is a fix or a workaround. Using the new line ...
by IL
Tue Dec 19, 2006 4:56 pm
Forum: Using OpenEMM
Topic: Charset of $customerData fields
Replies: 1
Views: 4138

Charset of $customerData fields

I'm having problems using umlauts in a form field. If I am storing data containing an umlaut using the following form:

<form action="form.do" method="post">
<input type="hidden" name="agnCI" value="1">
<input type="hidden" name="agnFN" value="Save">
<input type="hidden" name="agnUID" value ...