PLz HElp me....

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
somdev1001
Forum Newbie
Posts: 1
Joined: Fri Jun 26, 2009 9:36 am

PLz HElp me....

Post by somdev1001 »

i want to send an email with an image(with text embedding in it).. There will be five pictures user can choose any one of them.. user can also input the text. user can also generate the font embedding features in it...after all that, the picture with embedded text will send to the email(this is also an user input.)..basically it is an dynamically generated e-card... i can't configure it.. any one plz help me...i m in real trouble....
mycode is given below.............. :banghead:

Code: Select all

 
<?php
$text = $_GET['message'];
 
$source1= $_GET['source'];
 
 
//$text2 = "hello somdev";
// create an image with width 100px, height 20px
//$image = imagecreate(100, 20);
 
// create a red colour for the background
// as it is the first call to imagecolorallocate(), this fills the background automatically
//$red_background = imagecolorallocate($image, 255, 0, 0);
$image = ImageCreateFromPNG($source1);
// create a black colour for writing on the image
$black = imagecolorallocate($image, 0, 0, 0);
 
// write the string "vdhri.net" on the image
// the top left of the text is at the position (10, 2)
imagestring($image, 4, 10, 2, $text, $black);
 
// output the image
// tell the browser what we’re sending it
header('Content-type: image/png');
// output the image as a png
imagepng($image);
 
// tidy up
imagedestroy($image);
include('mimemail.inc.php');
$mail->senderName = "Somdev Sarkar";
$mail->senderMail = "bapisom1001@gmail.com";
$mail->bcc = "bapi_som_1001@yahoo.co.in";
$mail->subject = "This is the subject line";
$mail->body = "abcd.php";
//$mail->attachments[] = "2008_1215first0055.jpg";
//$mail->attachments[] = "2008_1215first0012.jpg";
$mail->create();
$recipients ='somdev1001@gmail.com';
if(!$mail->send($recipients)) 
echo $mail->error;
error_reporting(E_WARNING);
?>
 

plz rply me in this email id..somdev1001@gmail.com
Last edited by Benjamin on Fri Jun 26, 2009 10:00 am, edited 1 time in total.
Reason: Added [code=php] tags.
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Re: PLz HElp me....

Post by Benjamin »

Please use the appropriate

Code: Select all

 [ /code] tags when posting code blocks in the forums.  Your code will be syntax highlighted making it much easier for everyone to read.

[quote="Forum Rules"]11. Please use proper, complete spelling when posting in the forums. AOL Speak, leet speak and other abbreviated wording can confuse those that are trying to help you (or those that you are trying to help). Please keep in mind that there are many people from many countries that use our forums to read, post and learn. They do not always speak English as well as some of us, nor do they know these aberrant abbreviations. Therefore, use as few abbreviations as possible, especially when using such simple words.[/quote]

[quote="Forum Rules 1-1.1-1"]Select the correct board for your query. Take some time to read the guidelines in the sticky topic.[/quote]

[quote="Forum Rules 1 1.1 2"]Use descriptive subjects when you start a new thread. Vague titles such as "Help!", "Why?" are misleading and keep you from receiving an answer to your question.[/quote]

You may also want to read:
[list=1]
[*][url=http://forums.devnetwork.net/viewtopic.php?t=8815]General Posting Guidelines[/url]
[*][url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url]
[*][url=http://php.net/]PHP Manual[/url]
[*][url=http://www.google.com/search?client=opera&rls=en&q=php+tutorials&sourceid=opera&ie=utf-8&oe=utf-8]PHP Tutorials[/url][/list]
Post Reply