Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Field or Send subject limitation to 45 chars???

From: g:santilli:tiscalinet:it at: 5-Apr-2002 20:43

Hi melis, On Thursday, April 04, 2002, 8:21:10 PM, you wrote: m> So i wrote a script to send messages to my friend. But i cant send m> more than 45 Characters? The answer is in the source of SEND:
>> source send
send: func [ {Send a message to an address (or block of addresses)} address [email! block!] "An address or block of addresses" message "Text of message. First line is subject." /only "Send only one message to multiple addresses" /header "Supply your own custom header" header-obj [object!] "The header to use" /local smtp-port content do-send ][ ; ... snipped if not header [ header-obj: make system/standard/email [ subject: copy/part message any [find message newline 50] ] ] ; ... snipped ] If the message contains a newline character, SEND takes as the subject the text up to the first newline character; if not, SEND takes as the subject the first 50 characters. To avoid this behavior, just use the /header refinement of SEND: send/header [49175XXXXX--sms--profimail--de] "Message content" make system/standard/email [Subject: "SMS text here"] m> PS: How can i limit the text to 160 Characters? copy/part text 160 Regards, Gabriele. -- Gabriele Santilli <[g--santilli--tiscalinet--it]> -- REBOL Programmer Amigan -- AGI L'Aquila -- REB: http://web.tiscali.it/rebol/index.r