TwistPHP Documentation

setReplyTo

File path: dist/twist/Core/Models/Email/Create.model.php
Namespace: Twist\Core\Models\Email
Extends:

setReplyToSetup a different reply to address so that when a receiver hits reply in their mail client
the email will be sent to the reply address rather than the from address.

Parameters

Name Type Description
$strEmailAddressstringn/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strEmailAddress 'foo';

//Call the function setReplyTo with the example vars
$resCreate = new \Twist\Core\Models\Email\Create();
$resCreate -> setReplyTo($strEmailAddress);