I'm using MailFactory to send an email, and encountered this strange clause I've not seen before. I'm from PHP, and been doing Ruby now for about a week and a half.
Is the | smtp | variable a value that gets returned by Net::SMTP.start, and then utilised in the {} block?
response = Net::SMTP.start(cfg['host'], 25, cfg['from_domain'], cfg['username'], cfg['password'], :plain) {
| smtp |
recipients = cfg['mail_targets']['errors']
smtp.send_message(mail.to_s, mail.from, [recipients, mail])
}