Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How do I send pictures in email? Post 3325 by Thomas on Thursday 28th of June 2001 06:14:58 PM
Old 06-28-2001
Yeah, I mean in the body of the file.

I tried using MIME by inserting these lines in front of a gif file.

From: "user"
To: "To"
Subject: "subject"
Mime-version: 1.0
Content-Type: image/gif; name="name.gif"

The result is the gif file is unreadable. This was tried from sending email from solaris to outlook. I tried the Content-Transfer-Encoding line, but that doesn't seem to make a difference.
 

7 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Unable to send eMail from a UNIX-Host ( using mailx ) to a Outlook-email-addres(Win)

Hi A) I am able to send eMail using mailx from a UNIX ( solaris 8 ) host to my Outlook-email-ID : FName.Surname@Citigroup.com ( This is NOT my actual -eMail-ID). But in Outlook the "From :" eMail address is displayed as " usr1@unix-host1.unregistered.email.citicorp.com " .i.e the words... (2 Replies)
Discussion started by: Vetrivela
2 Replies

2. UNIX for Dummies Questions & Answers

Send email where # is in the email address - Using Unix

Hi All, How do I send an email using malix where email address contains a #. I have a email address like this : #test@test.com I want to send email like malix -s "TEST" #test@test.com < SOMEFILE I tried \# but doesn't work. Please let me know how we can achieve this? I am in... (1 Reply)
Discussion started by: jingi1234
1 Replies

3. Solaris

Send an email from Solaris using Linux email server

Hello everyone I have a problem and I need your help: I have a Solaris 10 and Solaris 8 UNIX Servers, and Linux Centos4 as email server. I need send an email from Solaris servers preferably using Centos4 email server. I have no mail service configured in my Solaris computers (1 Reply)
Discussion started by: aflores
1 Replies

4. Shell Programming and Scripting

Script to send email after comparing the folder permissions to a certain permission & send email

Hello , I am trying to write a unix shell script to compare folder permission to say drwxr-x-wx and then send an email to my id in case the folders don't have the drwxr-x-wx permissions set for them . I have been trying to come up with a script for few days now , pls help me:( (2 Replies)
Discussion started by: nairshar
2 Replies

5. UNIX for Dummies Questions & Answers

new to ldap, send email to a ou or group, and see a list from email client

hi, i'm running openldap on ubuntu 10.04, creating new items with apache directory studio (windows version). i use the ldap just as an address book to our small office (email clients are windows live mail 2009, 2011, microsoft outlook 2007 and 2010). a. i cant see a list of the contacts,... (0 Replies)
Discussion started by: V4705
0 Replies

6. Shell Programming and Scripting

send email to email id which is having # symbol

Hi, I have one requirement to send email to email id which is having # ( in the begining of the email id). I'm using mailx command to send an email. But not receiving those emails, but email status is showing email sent successful. Code which i'm using is : cat file1.txt | mailx -s... (3 Replies)
Discussion started by: latika
3 Replies

7. SuSE

Send outgoing email to my GroupWise email

Dear users, I have Linux server whose versions are Suse 10 SP 3 and Suse 11. I am trying to send email from these servers to my GroupWise email account. In /etc/postfix/main.cf file, The current value of MYHOSTNAME is LINUX.LOCAL. What should be the right value of MYHOSTNAME? Is... (0 Replies)
Discussion started by: JDBA
0 Replies
IMAGEGIF(3)								 1							       IMAGEGIF(3)

imagegif - Output image to browser or file

SYNOPSIS
bool imagegif (resource $image, [string $filename]) DESCRIPTION
imagegif(3) creates the GIF file in filename from the image $image. The $image argument is the return from the imagecreate(3) or imagecre- atefrom* function. The image format will be GIF87a unless the image has been made transparent with imagecolortransparent(3), in which case the image format will be GIF89a. PARAMETERS
o $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3). o $filename -The path to save the file to. If not set or NULL, the raw image stream will be outputted directly. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Outputting an image using imagegif(3) <?php // Create a new image instance $im = imagecreatetruecolor(100, 100); // Make the background white imagefilledrectangle($im, 0, 0, 99, 99, 0xFFFFFF); // Draw a text string on the image imagestring($im, 3, 40, 20, 'GD Library', 0xFFBA00); // Output the image to browser header('Content-Type: image/gif'); imagegif($im); imagedestroy($im); ?> Example #2 Converting a PNG image to GIF using imagegif(3) <?php // Load the PNG $png = imagecreatefrompng('./php.png'); // Save the image as a GIF imagegif($png, './php.gif'); // Free from memory imagedestroy($png); // We're done echo 'Converted PNG image to GIF with success!'; ?> NOTES
Note GIF support was removed from the GD library in Version 1.6, and added back in Version 2.0.28. This function is not available between these versions. For more information, see the GD Project site. The following code snippet allows you to write more portable PHP applications by auto-detecting the type of GD support which is available. Replace the sequence header ("Content-Type: image/gif"); imagegif ($im); by the more flexible sequence: <?php // Create a new image instance $im = imagecreatetruecolor(100, 100); // Do some image operations here // Handle output if(function_exists('imagegif')) { // For GIF header('Content-Type: image/gif'); imagegif($im); } elseif(function_exists('imagejpeg')) { // For JPEG header('Content-Type: image/jpeg'); imagejpeg($im, NULL, 100); } elseif(function_exists('imagepng')) { // For PNG header('Content-Type: image/png'); imagepng($im); } elseif(function_exists('imagewbmp')) { // For WBMP header('Content-Type: image/vnd.wap.wbmp'); imagewbmp($im); } else { imagedestroy($im); die('No image support in this PHP server'); } // If image support was found for one of these // formats, then free it from memory if($im) { imagedestroy($im); } ?> Note As of PHP 4.0.2 you can use the function imagetypes(3) in place of function_exists(3) for checking the presence of the various sup- ported image formats: <?php if(imagetypes() & IMG_GIF) { header('Content-Type: image/gif'); imagegif($im); } elseif(imagetypes() & IMG_JPG) { /* ... etc. */ } ?> SEE ALSO
imagepng(3), imagewbmp(3), imagejpeg(3), imagetypes(3). PHP Documentation Group IMAGEGIF(3)
All times are GMT -4. The time now is 12:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy