WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

Postie

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

Adding HEADERS to Postie Emails

Adding arbitrary headers to Postie emails.

Just append desired header line to the subject line after a @CRLF, as in...

AddExtender("WWPST34I.DLL")

Subject="How to add headers"
Header="X-Kazoo:  Kazoos are cool"

subjectheader=StrCat(subject,@CRLF,header)

kInit("mail.windowware.com","info@winbatch.com","","","")
kDest("support@winbatch.com","","")
rc = kSendText(subjectheader,"Hiya WinBatch Header Text - check headers for Kazoo","","")

If rc==1
   Message("Message","Sent")
Else
   Message("Error %rc%",kStatusInfo())
EndIf


Article ID:   W16347
File Created: 2005:02:18:12:19:56
Last Updated: 2005:02:18:12:19:56