I’ve read just about every post having to do with emails. I’m having trouble figuring out how to display the lookup value of a field in an email. in my code I have Assigned To: {assigned_to}. The value in the {assigned_to} field is an int. in the form I’m doing a lookup and matching a name with that int. In the email it displays Assigned To: 4 instead of Bob. Why does it ignore the lookup? Below is my code.
$mail_smtp_server = 'mail.xxx.com'; // SMTP server name or IP address
$mail_smtp_user = 'xxxx'; // SMTP user name
$mail_smtp_pass = 'xxxx'; // SMTP password
$mail_from = 'xxx@xxx.com'; // From email
$mail_to = {email}; // To email
$mail_subject = 'Notice!'; // Message subject
$mail_message = "<strong>You have tasks to complete<strong><a><br><br>
Task: {item_title}<br>
Due Date: {due_date}<br>
Due Time: {due_time}<br>
Assigned By: {created_by}<br>";
$mail_format = 'H'; // Message format: (T)ext or (H)tml
// Send email";
sc_mail_send($mail_smtp_server,
$mail_smtp_user,
$mail_smtp_pass,
$mail_from,
$mail_to,
$mail_subject,
$mail_message,
$mail_format);