sob1977 Posted June 2, 2006 Share Posted June 2, 2006 I received an html email today with a stock photo of a cab door. On the cab door was a personalized greeting with my bosses name. This email was clearly sent using listserv of some sort. Can I write a PHP function that will achieve this?I look forward to hearing from all!Sara Quote Link to comment https://forums.phpfreaks.com/topic/11043-can-i-create-a-personalized-image-greeting-in-html-using-php/ Share on other sites More sharing options...
poirot Posted June 2, 2006 Share Posted June 2, 2006 Well, you can modify an image using PHP's GD functions[a href=\"http://www.php.net/gd\" target=\"_blank\"]http://www.php.net/gd[/a] Quote Link to comment https://forums.phpfreaks.com/topic/11043-can-i-create-a-personalized-image-greeting-in-html-using-php/#findComment-41246 Share on other sites More sharing options...
sob1977 Posted June 2, 2006 Author Share Posted June 2, 2006 [!--quoteo(post=379409:date=Jun 2 2006, 01:32 PM:name=poirot)--][div class=\'quotetop\']QUOTE(poirot @ Jun 2 2006, 01:32 PM) [snapback]379409[/snapback][/div][div class=\'quotemain\'][!--quotec--]Well, you can modify an image using PHP's GD functions[a href=\"http://www.php.net/gd\" target=\"_blank\"]http://www.php.net/gd[/a][/quote]OK, so I should be able to send one dynamic e-mail to let's say 300 recipiants and the php code will be able to read the resipiants first name, and then display an image that reads "hello mike," or "hello pat,", etc.? Quote Link to comment https://forums.phpfreaks.com/topic/11043-can-i-create-a-personalized-image-greeting-in-html-using-php/#findComment-41250 Share on other sites More sharing options...
poirot Posted June 2, 2006 Share Posted June 2, 2006 Well, for that you can embed a variable into the link, like:[a href=\"http://www.example.com/card.php?recipient=mike\" target=\"_blank\"]http://www.example.com/card.php?recipient=mike[/a]Then use something like:$text = 'Hello, ' . $_GET['recipient']; Quote Link to comment https://forums.phpfreaks.com/topic/11043-can-i-create-a-personalized-image-greeting-in-html-using-php/#findComment-41256 Share on other sites More sharing options...
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.