Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • int SendMessageNL(string accessKey, string fileName, string separator, string listId, string listGuid, string messageId, string senderName, string sender, string subject, DateTime timeDateSending, intsendDelayTest)
    • accessKey: access key obtained using the LoginLoginFromId method
    • fileName: name of the CSV files containing the recipients of the message
    • separator: separating character used in the CSV file. If null or empty, the character ';' will be used by default.
    • listId: list identifier
    • listGuid: GUID of the list in MailUp
    • messageId: ID of the message to be sent
    • senderName: name of the sender of the message. If null or empty, the system will use the default name for the list.
    • sender: indirizzo email del mittente del Messaggio. If null or empty, the system will use the default address for the list. If no default sender has been defined for the list, the sending does not start.
    • subject: subject of the message
    • timeDateSending: date and time of scheduled sending
    • sendDelayTest: desired delay for the immediate sending

...

SendMessageNL method

  • Requires the CSV file to be moved to MailUp servers before method is called
  • Manages import and sending for a specific list. Differently from batch FTP imports from a CSV file, this method does not allow to import contacts to different lists. All recipients must be imported in the same list
  • The file containing the recipients must be in CSV format (can also be provided in a compressed format using ZIP compression).The file and its fields must be structured following the guidelines contained in the Appendix B CSV file description
  • Cannot perform a check on the possible duplication of contacts in the file, so the customer's system that creates the file has to take on this check. Method call fails when duplicated contacts are found in CSV file.

...