bigup401 has asked for the wisdom of the Perl Monks concerning the following question:

does anyone has good documentation of this coz cant find it anywhere

how to add sender id coz sns has that funcation of sender id

this is like sending using default sender id of sns

use Paws; my $paws = Paws->service('SNS'); $paws->Publish( Message => "test", PhoneNumber => "+1XXXXXXXXXX", );

Replies are listed 'Best First'.
Re: sns sender id
by thanos1983 (Parson) on Feb 21, 2018 at 10:22 UTC

    Hello bigup401,

    To be honest I am not familiar with Paws but I found Paws::SNS, is this something that you are looking for?

    Hope this helps, BR.

    Seeking for Perl wisdom...on the process of learning...not there...yet!

      yes but the problem the lib developer never indicated or mentioned on changing default sender id

      thats why am asking if anyone has tried it before. or the lib has no that package in the module

        Hello again bigup401,

        I think I understand what you mean. I guess if you can not find this information online try to reach him through email.

        Alternatively I also found SMS::Send::SMSGlobal::HTTP.

        From the sample of code it looks like this could be a candidate:

        my $sent = $sender->send_sms( to => '+61 4 8799 9999', text => 'Go to the window!', _from => 'Clang', _scheduledtime => DateTime ->now(time_zone => 'Australia/Melbourne') ->add(minutes => 5) );

        Try to combine those two modules if possible. IF you manage to resolve your question also update this question in case someone on the future might have the same problem.

        Hope this helps, BR.

        Seeking for Perl wisdom...on the process of learning...not there...yet!