Some problem here. Mails seem fine, but we also have to convince the mail admin people and "openemm.invalid" sounds suspicious to them, understandably.
Is there a way to configure this away?
Thanks,
lemonf
Search found 5 matches
- Tue Jan 06, 2015 5:46 pm
- Forum: Miscellaneous
- Topic: openemm.invalid in Message ID?
- Replies: 3
- Views: 23940
- Fri Nov 14, 2014 1:00 pm
- Forum: Development
- Topic: Disabling link tracking
- Replies: 4
- Views: 25907
Re: Disabling link tracking
We also very clearly need this feature to be configurable on an global basis.
Has anything happened here?
Best,
lemonfriend
Has anything happened here?
Best,
lemonfriend
- Wed Oct 22, 2014 4:42 pm
- Forum: Using OpenEMM
- Topic: WebService 2.0 SendMailing problem.
- Replies: 8
- Views: 12778
Re: WebService 2.0 SendMailing problem.
... and, if you're not in an english-speaking locale, you'd have to use e.g. the US Locale for your date string: SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z", Locale.US); // use US locale; WS won't accept "MESZ" for example. String date = sdf.format(new Dat...
- Wed Oct 22, 2014 4:15 pm
- Forum: Using OpenEMM
- Topic: WebService 2.0 SendMailing problem.
- Replies: 8
- Views: 12778
Re: WebService 2.0 SendMailing problem.
What helped is to modify the generated Java classes for the webservice to accept a String argument instead of XMLGregorianCalendar. Maybe the WSDL should be adapted from <xs:element name="sendDate" type="xs:dateTime"/> to <xs:element name="sendDate" type="xs:string...
- Wed Oct 22, 2014 4:05 pm
- Forum: Using OpenEMM
- Topic: WebService 2.0 SendMailing problem.
- Replies: 8
- Views: 12778
Re: WebService 2.0 SendMailing problem.
Same here. In Java "xs:dateTime" suggests using the XMLGregorianCalendar class. My use of XMLGregorianCalendar results in a sendDate in this format: <sendDate>2014-10-22T16:40:18.004Z</sendDate>. This is the standard date format and also used by WS 2.0 for authentication, for example, Send...