Reputation: 2535
I'm using HelloSign to send a template already in HelloSign and using PHP to send it. I want to choose different email subject and a different document name in the email body. How can I use different texts for both of these? Currently the setSubject() in the signature request sets the email subject as well as the document name shown in the email body under DOCUMENT sub heading. How can I do this?
Upvotes: -1
Views: 102
Reputation: 46
The subject of the email is set using the setSubject() method. To change the title, you can use the setTitle() method. More information on the subject and title parameters can be found in the Send With Template endpoint documentation.
Upvotes: 0