How to setup to get smtp log from rails
Can someone tell me how to configure rails to get an 开发者_如何学JAVAsmtp log.
thanks, ash
There is no special methods in Ruby to deal with SMTP logs, I suppose, so:
log = `tail /path/to/your/smtp/logs -n 100`.split(/[\r\n]+/)
精彩评论