illarra / IllarraEmailBundle

Create beautiful emails in Symfony2
MIT License
1 stars 0 forks source link

Document what happens if a message is reused when used on a batch #2

Open doup opened 11 years ago

doup commented 11 years ago
$msg = $this->get('illarra_email.renderer')->createMessage(/* ... */);

$msg->setTo(['asier@example.com' => 'Asier']);
// Add to batch

// Update same message
$msg->setTo(['eneko@example.com' => 'Eneko']);

// Add to batch and send all emails

Document the result if something strange is found