Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

@MailSend problem

Status
Not open for further replies.

SeeBee

Technical User
Mar 18, 2002
31
0
0
US
Below is the formula I am using. When I 'test', I (being both UserName and one of the 'cc') the message gets sent to both 'cc' people, but not the UserName. Can anyone tell me what the problem may be? Thanks in advance.

@MailSend(SendTo;@UserName:"John Doe": "Jane Doe"; ""; "Item Number Request Form has been sent to PSDA"; ""; "Your request has been sent to PSDA. You should be hearing from them shortly.");
@Command([FileSave]);
@PostedCommand([FileCloseWindow])
 
A first glance, I would suggest computing the cc values before including them in the send formula :

Code:
ccNames := @username+":John Doe:Jane Doe";
ccNamesList := @explode(ccNames;":");
@MailSend(SendTo;ccNamesList; ""; "Item Number Request Form has been sent to PSDA"; ""; "Your request  has been sent to PSDA. You should be hearing from them shortly.");
@Command([FileSave]);
@PostedCommand([FileCloseWindow])
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top