Giter Club home page Giter Club logo

Comments (5)

tzookb avatar tzookb commented on September 16, 2024

It do it in my app. But it shouldn't be a part of the package.
You could easily do it in the controller.

Maybe I could add events so you could send email when event of message

from tbmsg.

RokSiEu avatar RokSiEu commented on September 16, 2024

Can you publish your controller?

from tbmsg.

tzookb avatar tzookb commented on September 16, 2024

here you can do something like that, it really depends on what you did on your app.

 public function addNewMessage() {
    $user = Auth::user();

    $conv = Input::get('conv');
    $content = Input::get('content');

    //checking if user is in this conversation
    if ( !TBMsg::isUserInConversation($conv, $user->id) ) {
        return Redirect::route('profile');
    }

    //valid data, add msg
    TBMsg::addMessageToConversation($conv, $user->id, $content);

    $usersInConv = TBMsg::getUsersInConversation($conv);

    foreach ( $usersInConv as $userInConv ) {
          $this->mailerService->newMessage($userInConv, $user->username);
    }


    return Redirect::route('conversation', array('conv_id'=>$conv));
}

from tbmsg.

RokSiEu avatar RokSiEu commented on September 16, 2024

Can you show newConversation method in your controller? I'm little lost right now... because creating new conversation need user ids as array, but then addmessagetoconversation accepts only one user->id (not array) .

from tbmsg.

tzookb avatar tzookb commented on September 16, 2024

I have made it that the conversation is created in the moment clicks on the
user.

If you want to create a new conversation and send a message you should do:

$newCov = createConv($userIds );
addNewMessage( $sender, $conv, $content);

Simply create the conversation with the desired users and than add the new
message

Tzook Bar Noy

"Expert In Life"

mobile: +972 52 462 5353
email: [email protected]
On Jun 30, 2014 12:25 AM, "RokSiEu" [email protected] wrote:

Can you show newConversation method in your controller? I'm little lost
right now... because creating new conversation need user ids as array, but
then addmessagetoconversation accepts only one user->id (not array) .


Reply to this email directly or view it on GitHub
#7 (comment).

from tbmsg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.