SendTo Property

A comma separated list of addresses for destinations (required).

Syntax

ANSI (Cross Platform)
char* GetSendTo();
int SetSendTo(const char* lpszSendTo); Unicode (Windows) LPWSTR GetSendTo();
INT SetSendTo(LPCWSTR lpszSendTo);
@property (nonatomic,readwrite,assign,getter=sendTo,setter=setSendTo:) NSString* sendTo;
- (NSString*)sendTo;
- (void)setSendTo:(NSString*)newSendTo;
#define PID_SMTP_SENDTO 40

IPWORKSEDI_EXTERNAL void* IPWORKSEDI_CALL IPWorksEDI_SMTP_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
IPWORKSEDI_EXTERNAL int IPWORKSEDI_CALL IPWorksEDI_SMTP_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

""

Remarks

This property specifies a comma separated list of destinations for the mail message. A copy of the message is sent to each of them, and a To SMTP header is created containing the destination addresses.

Examples of valid addresses are: "Friendly Name" <address@company.com> or address@company.com

The class will fail if the MailServer returns an error code about any email address specified in SendTo or Cc but it will silently ignore the error if the same happens with an email address specified in BCc.

If the resulting header is longer than MaxHeaderLength, then it is folded according to RFC 822 specifications.

NOTE: You must clear the MessageRecipients properties before setting this property to remove previous recipients.

Data Type

String

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks EDI 2020 C++ Edition - Version 20.0 [Build 8203]