Roman Schmid

Results 84 comments of Roman Schmid

This would be really useful for APIs that only allow GET requests, such as https://prismic.io/

I can take this one, as I'm already a bit familiar with this module. @markguinn can you add me as a maintainer?

The extension was specifically designed to be added to Pages, not DataObjects (I don't think the publish page & blocks action is going with DataObjects…). If you modify the fields,...

Have you tried it? The `PublishAllExtension` that is being used for the "Publish Page & Blocks" action doesn't consider versioned DataObjects at the moment. You can easily add page-blocks to...

I'm not using SmtpMailer in this case.

It seems to be another issue. Emogrifier should not be used at all here, since the password reset email template doesn't contain any styles. And E-Mails with styles (eg. order...

I think this is an injector issue… seems like replacing `Email` with `StyledHtmlEmail` messes with subclasses of `Email`, such as: `Member_ForgotPasswordEmail`. Instantiating a `Member_ForgotPasswordEmail` creates a `StyledHtmlEmail` instead. ``` php...

Can confirm, that this is the issue. Using something like this solves the problem: ``` php // custom classes that extend StyledHtmlEmail class ChangePasswordEmail extends StyledHtmlEmail { protected $from =...

I think something like this should be part of shop, otherwise it'll break password-reset mails for all shop instances?

Ah you're right. Very well then. Maybe it would be still be worthwhile to raise a framework issue (so that framework doesn't use E-Mail subclasses). But that's not of your...