Sivakatirswami wrote/ schreef:

> put it after buffer
> put "Content-Type: text/plain" & cr
> put "Content-Length:" && the length of buffer & cr & cr
> put cr & cr & "Your Mail was sent" after buffer
> put buffer
Oh oh oh...

I don't exactly understand what you're doing, but this is definitely an
error. By outputting the length of buffer, and then changing buffer, the
outputted length ain't correct anymore.

So, first manipulate buffer as you want, and then output the whole thing. So
your script would be like:

  put it after buffer
  put cr & cr & "Your Mail was sent" after buffer

  # and then, at last:
  put "Content-Type: text/plain" & cr
  put "Content-Length:" && the length of buffer & cr & cr
  put buffer

Regards,
Sjoerd


Archives: http://www.mail-archive.com/[email protected]/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to <[EMAIL PROTECTED]>, not this list.

Reply via email to