| lleonard 2005-07-19, 7:48 am |
| Hi all,
We are sending a mail with some data to a external system using the SMTP
Adapter through a dynamic port. It is a simple mail, with a raw text body and
a subject. The point is that it seems that the SMTP Adapter encodes the
subject using RFC 2047, but the external system is not able to decode it.
As I don't know how to avoid the adapter encoding the subject, I'm trying to
do something which apparently is simpler: sending the mail with no subject.
So I've tried both:
msg(SMTP.Subject) = System.String.Empty;
msg(SMTP.Subject) = "";
but when the mail is sent, the subject is again the %MessageID%, which is
the default value for the subject property as the documentation states.
Any ideas on how to force the SMTP Adapter to send the mail with null subject?
Thanks,
Lleonard
|