CakeEmail附加文件

时间:2015-07-07 17:04:58

标签: cakephp cakeemail

我使用CakePHP开发我的应用程序。现在,我正在尝试使用附件文件发送电子邮件' ics'但我收到错误'文件未找到...' 这就是我现在所做的事情:

class IsAuthenticatedOrOptions(BasePermission):
    """
    The request is authenticated as a user, or an OPTIONS request.
    """

    def has_permission(self, request, view):
        return (
            request.method == 'OPTIONS' or
            request.user and
            request.user.is_authenticated()
        )

'DEFAULT_PERMISSION_CLASSES': (
    'path.to.IsAuthenticatedOrOptions',
),

0 个答案:

没有答案