getgrav / grav-plugin-email

Grav Email Plugin
http://getgrav.org
MIT License
37 stars 29 forks source link

Call to undefined method Grav\Plugin\Email\Message::setCc() #181

Closed ondrejvysek closed 8 months ago

ondrejvysek commented 8 months ago

In my plugin I'm using email, but since last year (can't remember when exactly) I'm unable to use SetCc using SMTP. When I remove SetCc everything works fine.

on PHP 8.0 / 8.2.

SetCc was removed from the plugin?

rhukster commented 8 months ago

it's just cc() now:

https://github.com/getgrav/grav-plugin-email/blob/3515e20f827e1e3e139e66cc5c814eb862413334/classes/Message.php#L39C1-L43C6

ondrejvysek commented 8 months ago

Thanks