21288 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1620 Views |
-
Email: Reply-To

9 July 2009 at 12:43pm Last edited: 9 July 2009 12:44pm
http://doc.silverstripe.org/doku.php?id=email
I see how to set the "from" email address but I do not see how to set "Reply-To"
This is done with plain PHP by sending special headers:
'Reply-To: webmaster@example.com' . "\r\n"How can I do this in SilverStripe? My code does NOT work:
$email = new Email($from, $to, $subject, $body);
$email->reply_to = 'webmaster@example.com';
$email->sendPlain(); -
Re: Email: Reply-To

9 July 2009 at 6:39pm
reply to is a custom header - see php.net/manual/en/function.mail.php
You need to call $email->addCustomHeader('Reply-To', 'something@something.com');
-
Re: Email: Reply-To

10 July 2009 at 12:07pm
Thanks, willr, but your idea does not work. I tried your exact code but the custom header is not sent with the message.
Do you have another idea, or could you point me to some documentation on SilverStripe custom email headers? Thanks!
-
Re: Email: Reply-To

10 July 2009 at 1:08pm
Nope no idea then sorry. API docs for our email class are - http://api.silverstripe.com/default/Email.html but if addCustomHeader doesn't work then I have no clue
-
Re: Email: Reply-To

2 August 2009 at 6:20pm
$From = "activate@sitename.com";
$member = Member::currentUser();
$To = $member->Email;
$Subject = "(sitename) activation - last step before full profile control";
$Body = "<p>$member->FirstName, please say hello to Heidi,
<br />She will guide you through the rest of the activation project.
<br />Be sure to send her some sample images of your art work as part of your activation!</p>";
$email = new Email($From, $To, $Subject,$Body,null,null,"heidi@sitename.com");
$email->addCustomHeader('Reply-To', 'heidi@sitename.com');
//send mail
$email->send();Took out site name since its still launching...
But I will be sure to add it to the showcase - its a social networking site built 100% on silverstripe! Launches August 3rd 09- wish us luck!
| 1620 Views | ||
|
Page:
1
|
Go to Top |



