Hi All,
I am trying to generate an e-mail message for distribution to a list. I have used this code so far and then the "ShowURL" method. The list will be held in a simple string, not a listbox as shown, but the principle should hopefully not change too much.

  Const schema = "mailto:";
  dim address As String


  //Address

// Address is in the form of [EMAIL PROTECTED], without angled brackets , or quotation marks.

  dim x As integer

  for x= 0 to LB_address.ListCount-1
    if x<=LB_address.ListCount-1 then
      Address=address+EncodeURLComponent(LB_address.Cell(x,0))+","
    else
      Address=address+EncodeURLComponent(LB_address.Cell(x,0))
    end if
  next

it seems to be working, but my questions are.

1) Does the code have any glaring errors
2) if one puts all the recipients in the "To" field, will all the names be visible to all the recipients. If so, how can I code it such that the recipient list will be suppressed


I am sure there will be other questions...but would appreciate help so far.

Thank you..

BTW...still have not figured out my "parameters weirdness"

_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to