When my application sends an SMS, I receive the SMS delivery reports only if they are enable in the SMS settings (manually).
How to enable SMS delivery report while sending an SMS programatically?
When my application sends an SMS, I receive the SMS delivery reports only if they are enable in the SMS settings (manually).
How to enable SMS delivery report while sending an SMS programatically?
Try to do this when you prepare SMS for sending:
Code:// Set the SMS message settings for the message. CSmsSettings* settings = CSmsSettings::NewL(); ... settings->SetDeliveryReport(ETrue);