我正在尝试使用CarrierWave发送带有附件的消息。在Mailboxer gem 中,我发现上传程序安装在此处。
它AttachmentUploader
用于该领域:attachment
在基本功能中一切正常。附加文件存储在 public/uploads 文件夹中。
但我需要向AttachmentUploader添加自定义功能(例如,更改存储附件的路径等)。
我尝试创建自己的attachment_uploader.rb
,app/uploaders
但它不起作用。
我正在尝试使用CarrierWave发送带有附件的消息。在Mailboxer gem 中,我发现上传程序安装在此处。
它AttachmentUploader
用于该领域:attachment
在基本功能中一切正常。附加文件存储在 public/uploads 文件夹中。
但我需要向AttachmentUploader添加自定义功能(例如,更改存储附件的路径等)。
我尝试创建自己的attachment_uploader.rb
,app/uploaders
但它不起作用。