Jump to content

Recommended Posts

hi!,

This is my first PHP program.and i wanted to develop it..but i havent more knowledge.i need your help to do this.....

 

I wrote this PHP snippet to send SMS to my local network through mywebsite.Now i wanted to send a MMS to it.But i dont know How to attach image to it... Can you please help me to do this...

 

Below is my SMS Code....

 

=====================================

<html>

<body><?php

if (isset($_REQUEST['email']))

//if "SMS form" is filled out, send email

  {

  //send email

  $to = $_REQUEST['email'] ;

  $subject = $_REQUEST['subject'] ;

  $message = $_REQUEST['message'] ;

  mail( "[email protected]", "$subject",

  $message, "||SSSSS||" );

  echo "Thank you for using my Testing SMS System.";

  }

else

//if "email" is not filled out, display the form

  {

  echo "<form method='post' action='mail.php'>

  mobile number(e.g 947123456789): <input name='email' type='text' /><br />

  Name: <input name='subject' type='text' /><br />

  Message:<br />

  <textarea name='message' rows='15' cols='40'>

  </textarea><br />

  <input type='submit' />

  </form>";

  }

?><br>

</body>

</html>

 

if i change..... mail( "[email protected]", "$subject",  to mail( "[email protected]", "$subject",

then thisone send pefectly..without any issue....But i wanted to Send with Image..How can i attach a image to this programme(Upload images from my computer or Select available images)

 

Can anyone give me a full code for this? and please intergrate that code to my code also or send me a Complete answer to how to do this?

 

thanks

 

Link to comment
https://forums.phpfreaks.com/topic/149624-php-help-need-send-mms/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.