Ruby 发送邮件 - SMATP SMTP(Simple Mail Transfer Protocol)即简单邮件传输协议,它是一组用于由源地址到目的地址传送邮件的规则,由它来控制信件的中转方式. Ruby提供了 Net::SMTP 来发送邮件,并提供了两个方法 new 和 start: new 方法有两个参数: server name 默认为 localhost port number 默认为 25 start 方法有以下参数: server - SMTP 服务器 IP, 默认为 local…
前情提要在第三天时,我们解说了如何在class里用include与extend,去使用module的method. Include is for adding methods to an instance of a class.Extend is for adding class methods.(出处)…Also,it is sometimes ok to use“include”to add both instance and class methods.#这句话比较进阶,之后再研究:)并透…