[Implemented] RemoveMailRecipient()

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
akj
Enthusiast
Enthusiast
Posts: 668
Joined: Mon Jun 09, 2003 10:08 pm
Location: Nottingham

[Implemented] RemoveMailRecipient()

Post by akj »

I would like these two enhancements to simply the sending of multiple emails to different sets of recipients using the same mail object:

Code: Select all

RemoveMailRecipient(#mail, mail$)
should be valid syntax and mean the same as

Code: Select all

RemoveMailRecipient(#mail, mail$, #PB_Mail_To | #PB_Mail_Cc | #PB_Mail_Bcc)

Code: Select all

RemoveMailRecipient(#mail)
should be valid syntax and have the action of removing ALL mail recipients from the #mail object
Anthony Jordan