ngoodman Posted February 16, 2010 Share Posted February 16, 2010 Hi simple question How do i add more than one recipient to an email field I tried "xxx@mail.com"+"yyy@mail.com " It did not work do I need a comma or space to delimit the names? Thanks Link to comment Share on other sites More sharing options...
AzeoTech Posted February 16, 2010 Share Posted February 16, 2010 I believe a comma will work. If not, try a semicolon. Doing: "xxx@mail.com"+"yyy@mail.com " just creates the string: xxx@mail.comyyy@mail.com Link to comment Share on other sites More sharing options...
ngoodman Posted February 17, 2010 Author Share Posted February 17, 2010 A comma works fine - thanks Link to comment Share on other sites More sharing options...
ngoodman Posted November 3, 2010 Author Share Posted November 3, 2010 Hi I have a list of recipients saved as strings in registry variables how do i send to multiple recipients, the delimiting comma does not work for this ??? registry.struser1, + registry.struser2 returns an error with the variables resolved as strings but added together ie if user 1 is abc@xx.com and user2 is bcd@xxx.com the error contains the string abc@xxx.combcd.xxx.com do I need some quotes or some brackets???? NIgel Link to comment Share on other sites More sharing options...
AzeoTech Posted November 3, 2010 Share Posted November 3, 2010 You need your , in quotes, otherwise your first line makes no syntactical sense: wrong: registry.struser1, + registry.struser2 correct: registry.struser1 + "," + registry.struser2 Link to comment Share on other sites More sharing options...
ngoodman Posted November 4, 2010 Author Share Posted November 4, 2010 many thanks all makes sense now, Nigel Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.