Nivel 1
Nivel 2
Iniciar sesión en la comunidad
Iniciar sesión para ver todas las insignias
How could I add custom field to a delivery below the text content?
Thank you in advance!
¡Resuelto! Ir a solución.
Vistas
Respuestas
Total de me gusta
Hi @KrishnakumarD1,
Adding a custom input field to an SMS delivery to store an image URL involves extending the schema, modifying the input form, and ensuring the field is available in the delivery configuration.
The SMS delivery configuration is tied to the nms:delivery schema in Adobe Campaign Classic. To add a custom field for storing an image URL, you need to extend this schema.
<element name="delivery">
<element name="customFields" label="Custom Fields">
<attribute name="imageUrl" type="string" length="255" label="Image URL" desc="URL of the image for SMS delivery"/>
</element>
</element>
This adds a field called imageUrl under a customFields node in the nms:delivery schema.
Next, you need to update the input form for SMS deliveries to display this new field in the user interface.
<container type="frame" label="Custom SMS Options">
<input xpath="customFields/@imageUrl" label="Image URL" placeholder="Enter the image URL here"/>
</container>
Ref: https://experienceleague.adobe.com/en/docs/campaign/campaign-v8/config/implement/customize
https://experienceleague.adobe.com/en/docs/campaign-classic/using/designing-content/web-forms/adding...
Vistas
Respuestas
Total de me gusta
Hi @KrishnakumarD1,
Adding a custom input field to an SMS delivery to store an image URL involves extending the schema, modifying the input form, and ensuring the field is available in the delivery configuration.
The SMS delivery configuration is tied to the nms:delivery schema in Adobe Campaign Classic. To add a custom field for storing an image URL, you need to extend this schema.
<element name="delivery">
<element name="customFields" label="Custom Fields">
<attribute name="imageUrl" type="string" length="255" label="Image URL" desc="URL of the image for SMS delivery"/>
</element>
</element>
This adds a field called imageUrl under a customFields node in the nms:delivery schema.
Next, you need to update the input form for SMS deliveries to display this new field in the user interface.
<container type="frame" label="Custom SMS Options">
<input xpath="customFields/@imageUrl" label="Image URL" placeholder="Enter the image URL here"/>
</container>
Ref: https://experienceleague.adobe.com/en/docs/campaign/campaign-v8/config/implement/customize
https://experienceleague.adobe.com/en/docs/campaign-classic/using/designing-content/web-forms/adding...
Vistas
Respuestas
Total de me gusta
Vistas
me gusta
Respuestas
Vistas
me gusta
Respuestas