Jump to content
  • 0

Email Piping Question


Blesta Addons

Question

i want to implement the email piping in our system , but i have the fallowing question .

 

is the email piping recognize the sender email from sender from ?

 

we always in our forms we put the sender as our domain sender , and we put the user email in the reply_to header . let say the exemple :

       $this->uses(array("Emails"));
       $options['reply_to'] =  $this->Html->ifSet($this->post['from']) ;
       if(isset($this->client)){
        $options['reply_to'] = $this->client->email ;
        $this->post['from_name'] = $client->first_name ." ". $client->last_name ;        
       }
      
       $this->post['to'] = "support@xxxxxx.com" ;
       $this->post['from'] = "no-reply@xxxxxx.com" ;
       $this->post['subject'] = "send from form;

so the email piping will put the ticket as no-reply@xxxxxx.com owner or $options['reply_to'] ?

 

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...