Lines Matching full:recipients
133 @param to: The recipients, separated by comma.
195 parser.add_argument('recipients', nargs='*',
198 if not args.recipients or not args.subject:
199 print 'Requires both recipients and subject.'
205 recipients = [] variable
206 for r in args.recipients:
208 recipients.append(r)
209 if recipients:
210 print 'Randomly selected recipients %s' % recipients
212 print 'Random filtering removed all recipients. Sending nothing.'
215 recipients = args.recipients variable
219 send_email(','.join(recipients), args.subject , message_text)