Saludos,
¿Como están?, espero que bien.
Tengo un script el cual envia correo cada vez que un usuario compra un articulo, el otro dia queria agregar al correo el teléfono y lo que hice fue ir al textbox (en html) de su perfil y revisar el código el cual era el siguiente:
Código HTML:
<input type="text" name="phone" value="+163xxxx" class="input" style="width:275px">
y lo que hice fue ir al archivo PHP del script que se llama class.escrow.buynow.inc.php y agregue la siguiente linea donde habian muchas similares.
Código PHP:
'{{phone}}' => fetch_user('phone', intval($buyer_id)),
'{{phone_seller}}' => fetch_user('phone', intval($seller_id)),
Entonces cuando iba al template de correos solo añadía {{phone}} y {{phone_seller}}, entonces me salía el teléfono del comprador y vendedor.
MI PROBLEMA ES EL SIGUIENTE:
Necesito que este código HTML:
Código HTML:
<input class="input" type="text" id="vqMHUaQNzVjCpk" name="custom1[1][vqMHUaQNzVjCpk]" value="" style="font-family: verdana">
hacer lo mismo con el de arriba, me traiga ese campo el (custom1). he intentado muchísimos:
Código PHP:
'{{custom1}}' => fetch_user('vqMHUaQNzVjCpk', intval($seller_id)),
'{{custom}}' => fetch_user('vqMHUaQNzVjCpk', intval($buyer_id)),
'{{customseller1}}' => fetch_user('custom1[1][vqMHUaQNzVjCpk]', intval($buyer_id)),
'{{eOPSkyvkbWtUlX}}' => fetch_user('custom1[1][vqMHUaQNzVjCpk]', intval($seller_id)),
y nada....
Es que esa variable id= no se como hacer con ella.
Le agradecería mil que me ayudaran, gracias.