私は行き止まりです!hotmailでメールを受信するアプリを作ろうとしています!メソッドを作成しましたが、エラーが発生し、メールが受信されません..
私の方法では:
class Recivemail < ActiveRecord::Base
attr_accessible :content, :from, :subject
def sendmail(content,from,subject)
subject = 'subject'
recipients = "linkinpark_8884@hotmail.com"
from = 'from'
sent_on = Time.now
end
end
config>enviroments>development.rb で
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings ={
:enable_starttls_auto => true,
:address => 'smtp.hotmail.com',
:port => 587,
:authentication => :plain,
:domain => 'localhost:3000',
:user_name => 'linkinpark_8884@hotmail.com',
:password => 'mypass'
}
ビューで>受信メール>表示
<%=@recivemail.sendmail(@recivemail.from,@recivemail.subject,@recivemail.content)%>
すべてが正常に機能しているように見えますが、アイデアのメールが届かないことを除いて??